I need to create a Universal iPhone/iPad application using Xcode 4.0.

I start creating universal application, there is common app delegate and separate subclass of this app delegate one for iPhone and iPad. So I override the didFinishLaunchingWithOptions and add a viewcontroller.

But my problem is I can't set the frame of subviews correctly.

[m_objMainTableView setFrame:CGRectMake(40, 330, 365, 700)];
m_objMainTableView.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin);

The tableview goes out of superview only a small portion is visible. But After I comment the autoresizingMask (second line) the tableview displayed in original frame.

I created the same code in older xcode version as an iPad app it works fine. what I can do?

thanks in advance....

link|improve this question

41% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.