I have written Pragma Mark after @implementation ViewController in .m file.
But Pragma Mark is not display in .m file whenever i have not synthesized any property. Why Xcode is restricting me for doing this ?
Even if other Pragma Marks is displayed. But the Pragma Mark written after @implementation ViewController is not displayed.
If i synthesized any single property after @implementation ViewController, then the Pragma Mark is displayed. I am not getting all this fus.
@implementation ViewController
# pragma mark View Life cycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}