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

swift - Button on Table View Cell connected to local function -

dns - Dokku server hosts two sites with TLD's, both domains are landing on only one app -

c# - ajax - How to receive data both html and json from server? -