[objective-c]UINavigationControllerの戻るボタンの文字を変える
UINavigationControllerの戻るボタンの文字を変える
self.navigationController pushViewControllerの直前に
UIBarButtonItem *backButtonItem=[[UIBarButtonItem alloc]initWithTitle:@"戻る" style:UIBarButtonItemStyleBordered target:nil action:nil]; self.navigationItem.backBarButtonItem=backButtonItem;