Main File of Source Code for Creating a Table with Expanders

Description: Main file of source code for the given example.

The main.m File

#import "AppDelegate.h"
int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}

See also:

Creating a Table with Expanders