以前、次のコードを使用して別のコントローラーに移動しようとしましたが、失敗しました
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
RowDetail *rd = [[RowDetail alloc]initWithNibName:@"RowDetail" bundle:nil];
if ([[allRow objectAtIndex:indexPath.row] is Equal:@"One"])
{
[rd setTitle:[allRow objectAtIndex:indexPath.row]];
}
[self.navigationalController pushViewController:rd animated:NO];
}
ストーリーボードを使用しているので、他のコードが機能していることがわかりましたが、プッシュしているコントローラーのタイトルを設定できませんでした。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"MainStoryBoard" bundle:nil];
RowDetail *rd = [sb instantiateViewControllerWithIdentifier:@"RowDetail"];
if ([[allRow objectAtIndex:indexPath.row] is Equal:@"One"])
{
[rd setTitle:[allRow objectAtIndex:indexPath.row]];
}
[self.navigationalController pushViewController:rd animated:NO];
}
それは機能し、RowDetailコントローラーを表示しましたが、タイトルを編集できませんでした。これをどのように行うことができますか?
編集:RowDetail.h
#import <UIKit/UIKit.h>
@interface LecturerDetail : UIViewController
@property (weak, nonatomic) IBOutlet UINavigationBar *rowNavBar;
@property (nonatomic, strong) NSString *lecDetailTitle;
@end
RowDetailについては、ナビゲーションバーにIBOutletを使用しようとしましたが、失敗しました。タイトルを表示させる方法をまだ試しています。