2010-07-28 6 views
0

Je crée dynamiquement des boutons sur l'application iPhone.Bouton dynamique Problème: Sélecteur non reconnu envoyé à l'instance


UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 

[btn setTitle:atitle forState:UIControlStateNormal]; 

[btn addTarget:self action:@selector(buttonTouched:) forControlEvents:UIControlEventTouchUpInside]; // handle touch 

[buttons addObject:btn]; 


---------- 

-(void) buttonTouched:sender{ 
} 

---------- 

-[NSCFString buttonTouched:]: unrecognized selector sent to instance 0x592ef70 
2010-07-28 08:59:43.551 DataManager[1707:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFString buttonTouched:]: unrecognized selector sent to instance 0x592ef70' 
*** Call stack at first throw: 
(
    0 CoreFoundation      0x02398919 __exceptionPreprocess + 185 
    1 libobjc.A.dylib      0x024e65de objc_exception_throw + 47 
    2 CoreFoundation      0x0239a42b -[NSObject(NSObject) doesNotRecognizeSelector:] + 187 
    3 CoreFoundation      0x0230a116 ___forwarding___ + 966 
    4 CoreFoundation      0x02309cd2 _CF_forwarding_prep_0 + 50 
    5 UIKit        0x002bce14 -[UIApplication sendAction:to:from:forEvent:] + 119 
    6 UIKit        0x003466c8 -[UIControl sendAction:to:forEvent:] + 67 
    7 UIKit        0x00348b4a -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 527 
    8 UIKit        0x003476f7 -[UIControl touchesEnded:withEvent:] + 458 
    9 UIKit        0x00534070 _UIGestureRecognizerUpdateObserver + 3687 
    10 CoreFoundation      0x02379d1b __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 27 
    11 CoreFoundation      0x0230e987 __CFRunLoopDoObservers + 295 
    12 CoreFoundation      0x022d7c17 __CFRunLoopRun + 1575 
    13 CoreFoundation      0x022d7280 CFRunLoopRunSpecific + 208 
    14 CoreFoundation      0x022d71a1 CFRunLoopRunInMode + 97 
    15 GraphicsServices     0x02bfd2c8 GSEventRunModal + 217 
    16 GraphicsServices     0x02bfd38d GSEventRun + 115 
    17 UIKit        0x002cab58 UIApplicationMain + 1160 
    18 DataManager       0x00001c4c main + 102 
    19 DataManager       0x00001bdd start + 53 
) 
terminate called after throwing an instance of 'NSException' 
Program received signal: “SIGABRT”. 

Toutes les idées?

+0

Changé .h et .M - (void) buttonTouched: (id) sender {} Maintenant je: wait_fences: il n'a reçu réponse: 10004003 Programme signal reçu: "EXC_BAD_ACCESS". –

Répondre

2

Parce que vous avez inclus deux points (:) dans votre argument sélecteur addTarget, le sélecteur de réception doit accepter un paramètre. Le moteur d'exécution ne reconnaît pas le sélecteur @selector(buttonTouched:), car il n'existe aucune méthode portant ce nom qui accepte un paramètre. Modifier la signature de méthode pour accepter un paramètre de type id pour résoudre ce problème.

+0

Changé .h et .m à - (void) buttonTouched: (id) expéditeur {} Maintenant, j'obtiens: wait_fences: n'a pas reçu de réponse: 10004003 Signal de réception du programme: "EXC_BAD_ACCESS". Des idées? –

0

devrait être:

-(void)buttonTouched:(id)sender { } 
Questions connexes