Swift - Make layout smaller for one device

2019-09-01 07:57发布

So I don't get the point to develop for 3,5 devices if the layout view is bigger than that, now some of the layouts doesn't fit in the 3.5 devices, what is the best way to solve it, I am already using Size Classes and Auto Layout. Is there any way to make things smaller just for the 3,5?

1条回答
小情绪 Triste *
2楼-- · 2019-09-01 08:39

You can check @HAS answer for a great extension to get the device. You can simply add his extension to any file you want (outside of the class body).

Then you check your device type like that:

let model = UIDevice.currentDevice().modelName

if(model == "iPhone 4" || model == "iPhone 4S"){
    //do iPhone 4 stuff
}else{
    //do other stuff
}
查看更多
登录 后发表回答