我有類:PropertyCalcViewController
.M & .H其他類iPhone +訪問控制
在.H我
IBOutlet UIButton *btnGo;
@property (nonatomic, retain) IBOutlet UIButton *btnGo;
,並在.m文件我有
@synthesize *btnGo;
現在我還有另一個類Manager
.m & .h。
我想要做的就是從Manager
類訪問btnGo
和PropertyCalcViewController
像
[btnGo removeFromSuperView]
我該怎麼做刪除嗎?
the_manager是Manager類的對象嗎? btnGo是在PropertyCalcViewController類不在經理類.. – pratik 2010-02-02 10:49:39
哦,我明白了。您的描述不是很清楚,因爲缺少'@ interface'。 – kennytm 2010-02-02 11:13:36
the_view_ctrler是PropertyCalcViewController類的對象嗎? – pratik 2010-02-02 11:16:33