-[UITextField propertyAtIndexes:(NSIndexSet *)indexes]?
我创建了 UITextField
的子类,并在头文件中声明了以下属性:
@property (nonatomic, getter=isFakeHidden) BOOL fakeHidden;
当我进入 .m
文件并输入 - fa
它建议 - (NSArray *)fakeHiddenAtIndexes:(NSIndexSet *)indexes
什么是那?
I made a subclass of UITextField
and declared the following property in the header file:
@property (nonatomic, getter=isFakeHidden) BOOL fakeHidden;
When, I go into the .m
file and type - fa
it suggests - (NSArray *)fakeHiddenAtIndexes:(NSIndexSet *)indexes
What is that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您需要清除 Xcode 索引,因此它将重新扫描您的源代码并重建它。
关闭您的 Xcode 项目,打开管理器,转到“项目”,选择您的项目并单击“清除派生数据”。
重新打开您的项目。 Xcode 将重新索引它。
Maybe you'll need to clear the Xcode index, so it will rescan your sources, and rebuild it.
Close your Xcode project, open the organizer, go to "Projects", select your project and click "Clear derived data".
The re-open your project. Xcode will re-index it.