通知からコールバックした後、ボタンのタイトルを変更しようとしていますが、まったく応答しません。私はそれがnilではないことを確認し、テキストIm '割り当てを確認しましたが、すべて問題ありません。strong
代わりにプロパティタイプを作成しましたweak
が、成功しませんでした。
- (void) setButtonTitleFromSelectedSearchResult:(NSNotification *)notif
{
[self popController];
self.sourceMapItem = [[notif userInfo] valueForKey:@"SelectedResult"];
NSLog(@"The Selected Result is: %@", self.sourceMapItem.name);
//Testing
NSLog(@"%@", self.fromButton); // check it's not nil
[self.fromButton setTitle:self.sourceMapItem.name];
}