// userprofileform.h (viewcontroller)
@class UserProfileForm;
@protocol UserProfileFormDelegate <NSObject>
- (void) UserProfileFormDelegateReload: (UserProfileForm *) sender;
@end
@interface UserProfileForm : OTSFormViewController <UIActionSheetDelegate>
@property(nonatomic,assign) id <UserProfileFormDelegate> delegate;
@end
// userprofileform.m
#import "UserProfileForm.h"
@implementation UserProfileForm
- (void)endFlow:(id)sender {
[self.delegate UserProfileFormDelegateReload:self];
[self.navigationController popViewControllerAnimated:YES];
}
// shopprofilecontroller.h
#import "UserProfileForm.h"
@interface ShopProfileController : OTSViewController <UserProfileFormDelegate>
@end
// shoprofilecontroller.m
@implementation ShopProfileController
- (void)viewDidLoad
{
[super viewDidLoad];
self.navigationItem.title = @"Business";
UserProfileForm * userProfileForm = [[UserProfileForm alloc] init];
userProfileForm.delegate = self;
}
-(void)UserProfileFormDelegateReload:(UserProfileForm *)sender{
NSLog(@"delegates fired");
}
, но метод делегата не вызывается при выталкивании UserProfileForm. Я не знаю, почему это не стрельба. Я пробовал NSNotifications, и он тоже не срабатывал.