8

通知からコールバックした後、ボタンのタイトルを変更しようとしていますが、まったく応答しません。私はそれが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];
}
4

4 に答える 4

2

If you're using an IBOutlet for the property fromButton be sure that is connected to WKInteface on the storyboard, like below:

IBOutlet

于 2015-04-02T07:50:14.107 に答える