i have own class which is extends from UITableViewController.
After this line
MyClass *obj = [[MyClass alloc] init];
i have
obj.view.frame.orign.y = 20
after i push this custom view via navigation controller - i check y coordinate in viewDidAppear and it became 0.
so strange
Why ? Is it because my custom table view below status bar which height is 20 ?
or something else.
If it because status bar, why i can create UIButton in (0,0) and it below status bar ?