我有一個方法可以調用帶有1個參數的另一個方法到另一個類。它可以正常使用,但現在我需要1個更多的參數,這是我的代碼:obj-c:iphone編程,帶有2個參數的調用方法
我得到一個「ADDOBJECT可能不響應」
test.m
調用方法:
DrunkeNewIdeaAppDelegate *appDelegate = (DrunkeNewIdeaAppDelegate *)[[UIApplication sharedApplication] delegate];
Testes *myLevelObject = (Testes *)appDelegate.testViewController1;
[myLevelObject addobject:rephereanswer,nbimportant];
方法叫做:
testes.h
-(void)addobject:(double)rephereanswer:(double)nbimportant;
testes.m
-(void)addobject:(double)rephereanswer:(double)nbimportant{
好像在工作thx – hugo411 2010-06-19 22:10:05