Manoj
Manoj

Reputation: 1540

Wanna Scale up contents inside the view according the size of the view, which chages according to the device

I share same storyboard for iPad and iPhone. I have contents inside a small view. I Wanna Scale up contents inside that view according the size of the view, which changes according to the device it's been installed.

Upvotes: 0

Views: 54

Answers (1)

Nirav Gadhiya
Nirav Gadhiya

Reputation: 6342

try to set autoresizing masks like

[YourView setAutoresizingMask:UIViewAutoresizingFlexibleBottomMargin|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];

Hope will help this

Upvotes: 1

Related Questions