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
すると、アプリケーションがクラッシュします。