這段代碼是否假設在我連接的ViewController上設置標題?ios Storyboard - 將標題推送到View Controller上
2個UIViewControllers通過push segue連接 - 第一個嵌入在NavigationController中。
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"settingsSegue"])
{
self.navigationItem.title = [[NSString alloc] initWithFormat:@"Custom Title"];
}
}
它不適用於我,但語法是正確的。
先謝謝了:-)
對不起看起來前途無量:-),再沒有任何錯誤,但它不是通過遺憾 –
我得到它的工作到來 - 有一個金髮碧眼的時刻,忘了一個視圖控制器鏈接到頭文件在故事板:-) –