tags:

views:

24

answers:

1

Hi, i want align UIView's to left, like the property align="left" in html or float:left with css, it's possible in objective C? Note: the UIViews are dinamically loaded (i dont know how many)

A: 

When you instantiate them, set the frame to something suitable. Also set autoresizingMask = UIViewAutoresizingFlexibleRightMargin.

tc.
Hum, an example would be great :D, sorry i'm novice
PRCoder