JSON を辞書に変換し、通知で userInfo として送信します。
NSDictionary *quickDict = [NSDictionary dictionaryWithObjectsAndKeys:object1, key1, nil];
NSNotification* notification = [NSNotification notificationWithName:kVideoDidFinishNotification object:self userInfo:quickDict];
[[NSNotificationCenter defaultCenter] postNotification:notification];
デリゲートで次のようなことをせずに、videoPlayBackDidFinish をメッセージの受信者にする方法がわかりません。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoPlayBackDidFinish:) name:kVideoDidFinishNotification object:nil];
次に、辞書にアクセスするメソッドで:
-(void)videoPlayBackDidFinish: (NSNotification*)notification
{
NSDictionary *jsonInfo = [notification userInfo];
}