[UIImageView centerXAnchor] 的最低 IOS 版本是多少?
Posted
技术标签:
【中文标题】[UIImageView centerXAnchor] 的最低 IOS 版本是多少?【英文标题】:What is the minimum IOS version for [UIImageView centerXAnchor]? 【发布时间】:2016-01-13 10:31:45 【问题描述】:谁能告诉我[UIImageView centerXAnchor]
的最低ios版本是多少?在 IOS 8.1 上测试时,我不断收到以下错误。
-[UIImageView centerXAnchor]: unrecognized selector sent to instance 0x7ab46b10
【问题讨论】:
【参考方案1】:适用于 iOS 9 及更高版本。
为了将来参考,您可以通过方法名称上的Option + Left Click进行检查。
【讨论】:
感谢您提供的信息,我不知道该选项。【参考方案2】:适用于 iOS 9.0 及更高版本。
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UILayoutGuide_Class_Reference/#//apple_ref/occ/instp/UILayoutGuide/centerXAnchor
【讨论】:
【参考方案3】:这是苹果定义的@property(readonly, strong) NSLayoutXAxisAnchor *centerXAnchor NS_AVAILABLE_IOS(9_0);
,意思是在iOS 9.0 及更高版本中可用。
希望对您有所帮助。
【讨论】:
以上是关于[UIImageView centerXAnchor] 的最低 IOS 版本是多少?的主要内容,如果未能解决你的问题,请参考以下文章
使 UIImageview 根据另一个 UIImageview 旋转而旋转