0

iOS モバイル ライブラリを 11/2011 リリースに更新していますが、ビューを読み込もうとするとこのエラーが発生します。

+[PayPal getPayPalInst]: 認識されないセレクターがクラス 0x1c4e50 に送信されました 2012-04-09 15:32:06.201 Baulet[16789:15203] * キャッチされない例外 'NSInvalidArgumentException' が原因でアプリを終了します。理由: '+[PayPal getPayPalInst]: 認識されないセレクタークラス 0x1c4e50' に送信 *最初のスロー コール スタック:

SIGABRT を取得する場所は次のとおりです。

  UIButton *button = [[PayPal getPayPalInst] getPayButtonWithTarget:self andAction:@selector(payWithPayPal) andButtonType:BUTTON_278x43];
    [self.iPhonePayPalView addSubview:button];

私もこの方法を試しました:

 [self addLabelWithText:@"Simple Payment" andButtonWithType:BUTTON_294x43   withAction:@selector(payWithPayPal)];


- (void)addLabelWithText:(NSString *)text andButtonWithType:(PayPalButtonType)type withAction:(SEL)action {

UIButton *button = [[PayPal getPayPalInst] getPayButtonWithTarget:self andAction:action andButtonType:type];
CGRect frame = button.frame;
frame.origin.x = 15;
frame.origin.y = 130;
button.frame = frame;
[self.iPhonePayPalView addSubview:button];
}

何かご意見は?

4

0 に答える 0