ios - frame changes are discarded -


i trying reposition when resizing using changes on these views' frames changes made problem these changes discarded (undone) , views old frames back. changing frames code bellow

viewholder.frame = cgrectmake(viewholder.frame.origin.x,viewholder.frame.origin.y, viewholder.frame.size.width, viewholder.frame.size.height + 30); cgrect frame3 = cgrectmake(belowview.frame.origin.x, belowview.frame.origin.y + 30, belowview.frame.size.width, belowview.frame.size.height); belowview.frame = frame3; 

so can tell me why happening here?


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -