子类化视图,处理自己的iPhone

时间:2011-11-07 22:17:16

标签: iphone uiviewcontroller subclass self

我在以下内容中遇到了构建错误:

[self presentModalViewController:tweetViewController animated:YES];
[self dismissModalViewControllerAnimated:YES];

因为self不适用于子类。我基本上是子类化子类,因为我只想在一系列if语句正确的情况下调用tweetViewController。

如何处理子类中的'self'而不导入我想从中调用此子类的所有其他类?

1 个答案:

答案 0 :(得分:0)

如果你是UIViewController的子类,那么你只需要调用super的实现:

[super presentModalViewController:tweetViewController animated:YES];
[super dismissModalViewControllerAnimated:YES];