子类化视图,处理自己的 iPhone
我收到以下构建错误:
[self presentModalViewController:tweetViewController animated:YES];
[self dismissModalViewControllerAnimated:YES];
因为 self 不适用于子类。我本质上是对子类进行子类化,因为我只想在一系列 if 语句正确时调用 tweetViewController 。
如何在子类中处理“self”而不导入我想从中调用该子类的所有其他类?
I'm getting a build error in the following:
[self presentModalViewController:tweetViewController animated:YES];
[self dismissModalViewControllerAnimated:YES];
because self isn't applicable in the subclass. I'm essentially subclassing a subclass because I only want to call tweetViewController if a series of if statements are correct.
How do I handle 'self' in a subclass without importing all the other classes I want to call this subclass from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你是 UIViewController 的子类,那么你只需要调用 super 的实现:
If you are subclassing UIViewController then you just need to call the super's implementation: