私はiOS開発の初心者です。ストーリーボードを使用して別のページに移動するアプリを作成しました。
Add BarButton in Customer ページをクリックすると --> Add Customer ページに移動します ( Modal
Storyboard Segue を使用) 。
そこで、ユーザー名とパスワードを入力して保存ボタンをクリックすると、-> 顧客ページに戻ります。
そして、すべてがうまくいきます。
back button
問題は、[顧客の追加] ページに入れたいことです。Push
Storyboard Segueを使用できることは既に知っていますが、使用するとエラーが発生します。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Pushing a navigation controller is not supported'
*** First throw call stack:
(0x13cb022 0x155ccd6 0xeff1b 0xefa24 0x44bde6 0x4404d0 0x13cce99 0x1814e 0x256a0e 0x13cce99 0x1814e 0x180e6 0xbeade 0xbefa7 0xbe266 0x3d3c0 0x3d5e6 0x23dc4 0x17634 0x12b5ef5 0x139f195 0x1303ff2 0x13028da 0x1301d84 0x1301c9b 0x12b47d8 0x12b488a 0x15626 0x25ed 0x2555)
terminate called throwing an exception(lldb)
CustomerViewController.h:
#import "AddCustomerViewController.h"
@interface CustomerViewController : UITableViewController<AddCustomerViewControllerDelegate>
{
IBOutlet UITableView *tableview;
NSMutableArray *customers;
}
@property(nonatomic,retain)IBOutlet UITableView *tableview;
@property(nonatomic,retain)NSMutableArray *customers;
@end
これは、CustomerViewController.m で使用するコードです。
self.customers = [[NSMutableArray alloc]init];
-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if([segue.identifier isEqualToString:@"AddCustomer"])
{
UINavigationController *navigationController = segue.destinationViewController;
AddCustomerViewController *addCustomerViewController = [[navigationController viewControllers] objectAtIndex:0];
addCustomerViewController.delegate = self;
}
}
-(void) addCustomerViewControllerDidSave: (AddCustomerViewController *) Controller newCustomer: (Customer *) customer
{
[self dismissViewControllerAnimated: YES completion:NULL];
[self.customers addObject:customer];
[self.tableview reloadData];
}
AddCustomerViewController.h:
#import "Customer.h"
@class AddCustomerViewController;
@protocol AddCustomerViewControllerDelegate <NSObject>
-(void) addCustomerViewControllerDidSave: (AddCustomerViewController *) Controller newCustomer: (Customer *) customer;
@end
@interface AddCustomerViewController : UITableViewController
{
}
@property (nonatomic, weak) id <AddCustomerViewControllerDelegate> delegate;
@property (nonatomic, strong) IBOutlet UITextField *firstnameTxt;
@property (nonatomic, strong) IBOutlet UITextField *lastnameTxt;
- (IBAction)save:(id)sender;
@end
AddCustomerViewController.m:
- (void)save:(id)sender
{
NSLog(@"Save");
Customer *newCustomer = [[Customer alloc]init];
newCustomer.firstname = self.firstnameTxt.text;
newCustomer.lastname = self.lastnameTxt.text;
[self.delegate addCustomerViewControllerDidSave:self newCustomer:newCustomer];
}
Push
Storyboard Segue (戻るボタンを持つ) をどのように使用できますか?