ios - Why is frame width of the view alway 600 by 600 with autolayout -
i making basic minesweeper app practice / fun in swift. want make size of board (10 tiles wide) adapts ios screen.
to i'm setting size of each tile getting tilecontainer view.frame.width , / 10.
my problem tilecontainer view set 600, no matter what. on storyboard set tilecontainer equal width of view container, ctr click & dragging view , selecting equal width. keeps width of tilecontainer set @ 600, regardless of device i'm testing on. (which problem, width should change depending on screen width not constant 600)
does know how can proper width of screen regardless of device it's being used on?
when using auto-layout, subviews laid out after viewdidlayoutsubviews
function. therefore, if call tilecontainer.frame.size
before that, such in viewdidload
, 600 600 (which default size in storyboard).
viewdidlayoutsubviews: called notify view controller view has laid out subviews. reference
override func viewdidlayoutsubviews() { super.viewdidlayoutsubviews() print(tilecontainer.frame.size); // actual size looking }
Comments
Post a Comment