In portrait orientation,I want to layout 4 views horizontally.The 4 views have equal width.Here are the details about every iPhone's width fetched from ios resolution.
iPhone 4/4s/5/5c/5s 's logic resolution width is 320
iPhone 6 's logic resolution width is 375
iPhone 6 plus 's logic resolution width is 414.
So each view's width is going to be:
iPhone 4/4s/5/5c: 320 / 4 = 80(pts)
iPhone 6: 375 / 4 = 93.75(pts)
iPhone 6 plus: 414 / 4 = 103.5(pts)
My question is how does iOS layout system handle these decimals(93.75 & 103.5).And is there any better solution to handle this situation without pixels loss.