UIStackView before iOS 9.0

来源:互联网 发布:java jre 32位下载 编辑:程序博客网 时间:2024/05/22 07:39

一 今天朋友遇到一个问题  UIStackView before iOS 9.0




这是由于UIStackview不能在iOS9以下使用,解决方法stack flow


Check inProject Targets-> Deployment info -> Deployment Target.If it's not 9.0 change it to 9.0. 

You need to change the deployment target of your application's target to iOS 9. Otherwise the app supports down to whatever OS that your deployment target is set to. 

Not solved?? Check out for other reason??? Check this:

If your Deployment target is already set to 9.0 and you still get this error then try then check your project File inspector-> Project Document -> Project Format and check if its Xcode-6.3-compatible or not.If its not then set it to Xcode-6.3-compatible.

The other reason is may be you accidentally add UIStackView and thats why you encounter the problem. UIStackView supports 9.0 and later and your deployment target doesn't allow that. So just check if you accidentally add UIStackView and if you added and you don't want it than just remove it.


二  要在iOS以下使用UIStackView,也有人挖掘了这个方法。

浅析为何能通过FDStackView在iOS9以下使用UIStackView


0 0
原创粉丝点击