我知道我的标题视图是 UISegmentedControl,Xcode 仍然警告我
我有一个 UINavigationalController,我已将其 titleView 设置为 UISegmentedControl。
稍后,如果我做类似的事情。
[self.navigationItem.titleView setEnabled:NO forSegmentAtIndex:0];
我收到一条警告,指出 UIView 可能不会响应此消息。当然它确实有效并且工作得很好,但是我如何正确地摆脱警告呢?
I have a UINavigationalController of which I've set the titleView to a UISegmentedControl.
Later on, if I do something like.
[self.navigationItem.titleView setEnabled:NO forSegmentAtIndex:0];
I get a warning saying that UIView may not respond to this message. Of course it does and works fine but how do I properly get rid of the warning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 titleView 转换为 UISegmentedControl:
Cast the titleView as a UISegmentedControl:
类似于 DyingCactus 的建议:
Similar to DyingCactus's suggestion: