0

NSObjectクラス(custompop)でメソッドを呼び出すView Controller(UserLogin)があります。メソッドは UIView オブジェクトを に返しますviewController。メソッドでは、ボタンを 1 つ追加popupActionし、ボタンのクリック時にアクションを呼び出します。ビューコントローラーのpopupAction呼び出しメソッド。すべてのデリゲート プロパティを設定しました。

コードは次のとおりです。

//**in viewcontroller.h**
#import "custompopup.h"
@interface UserLogin : UIViewController<customPopUpDelegate>
{
custompopup *obj_custompopup;//NSObject Class
}
-(void)handlePopUpAction;


//**in viewcontroller.m**
 - (void)viewDidLoad
{
    [super viewDidLoad];
   obj_custompopup = [[custompopup alloc] init];
  [obj_custompopup setDelegate:self];

 popupview = [[UIView alloc] init];
popupview = [obj_custompopup initwithTitleText:@"Title"  withdelegate:self];
[self.view addSubview:popupview];
}
 -(void)handlePopUpAction
{
  NSLog(@"Inside handlePopUpAction");
}


//**in NSObject.h**
@protocol customPopUpDelegate <NSObject>
-(void)handlePopUpAction;
@end
@interface custompopup : NSObject
{
id<customPopUpDelegate>delegate;
UIButton *First_Btn;
}
@property(retain)id delegate;


 //**in NSObject.m**
@synthesize delegate;
 -(UIView *)initwithTitleText:(NSString *)titleText  withdelegate:(id)del 
//returns uiview   to viewcontroller
{
self.delegate =del;
UIView *customView = [[UIView alloc] init];
customView.frame = CGRectMake(200, 100, 617,367);

First_Btn =[UIButton buttonWithType:UIButtonTypeRoundedRect];
First_Btn.frame=CGRectMake(20, 330,125,45);
 [First_Btn @"title" forState:UIControlStateNormal];
[First_Btn addTarget:self  action:@selector(popUpAction)       forControlEvents:UIControlEventTouchUpInside];
[customView addSubview:First_Btn];

return customView;
}

-(void)popUpAction
{
[[self delegate] handlePopUpAction];
}

問題は、コンパイラが各メソッドを正常に実行し、最後のステップまでコンソールにすべてを出力することです。View Controller の最後のステップが完了EXC_BAD_ACCESSすると、アプリケーションがクラッシュします。

4

1 に答える 1

0

あなたの初期化が間違っています..あなたがやろうとしていることを理解できませんが、 customView を返し、自己を保持せずに残しますが、自己を使用しています。

于 2013-01-30T12:20:09.980 に答える