所以继承我的问题。我认为这是一个简单的,但我无法弄清楚为什么这不起作用。
我需要从一个不同的类(ServiceController)访问一个类(RootViewController)中的Outlets(UITextField,UITableView,UIActivityIndicatorView等)。
我现在有这个(只显示需要什么):
RootViewController.h
@interface RootViewController : UIViewController{
UITextField *textField;
}
@property (nonatomic, retain) IBOutlet UITextField *textField;
- (void)startService;
@end
RootViewController.m
@implementation RootViewController
@synthesize textField;
- (void)startService{
ServiceController *service = [[ServiceController alloc] init];
[service start];
[service release];
}
@end
ServiceController.h
@class RootViewController;
@interface ServiceController : NSObject{
}
@property (nonatomic, retain) IBOutlet RootViewController *rootViewController;
- (void)start;
@end
ServiceController.m
#import "RootViewController.h"
@implementation ServiceController
@synthesize rootViewController;
- (void)start{
[((RootViewController*)rootViewController).textField setText:@"HELLO !"];
NSLog(@"CALLED !");
}
@end
我不明白为什么这不起作用,我使用相同的方法从RootViewController到DetailViewController做同样的事情,它工作正常。我检查了详细信息/根控制器中是否有任何其他声明允许它工作,但我没有注意到。
PS:一切都被成功调用并且“被调用!”正在记录,无论我对插座做什么都没有效果。
答案 0 :(得分:0)
看起来你没有设置rootViewController
。
尝试添加:
ServiceController *service = [[ServiceController alloc] init];
// set the property here
[service setRootViewController:self];
[service start];
[service release];
答案 1 :(得分:0)
您的ServiceController
需要设置rootViewController
属性。您可以在XIB文件中执行此操作,也可以在代码中显式执行此操作:
myServiceController.rootViewController = myRootViewController;