我对iOS开发有点陌生。我在两个单独的视图控制器(主视图控制器和编辑器视图控制器)中声明和实现了这些方法,并且需要将数据从编辑器传递到主视图。master 包含一个表视图,需要使用适当的名称进行更新。(注意:我使用 iPhone 的默认主从应用程序模板。我没有使用单视图应用程序手动创建它)
目前,MasterViewController 中的 UITableView 不会使用新单元格进行更新。这对我来说是忙碌的一周,我一定是错过了一些东西。这是主视图控制器的代码:
@implementation FTMasterViewController
@synthesize bPlusMinusField, cPlusMinusField, cTerm, bTerm;
-(void) passTrinomial:(CCTrinomial *)tri withBPlusMinusField:(NSString *)bField withBTerm:(double)bTermField withCPlusMinusField:(NSString *)cField withCTerm:(double)cTermField {
//allocate the array
if (!self.trinomials) {
self.trinomials = [[NSMutableArray alloc] init];
}
//set Master VC properties to tri fields passed in
self.bPlusMinusField = bField;
self.cPlusMinusField = cField;
self.bTerm = bTermField;
self.cTerm = cTermField;
NSString *trinomial = [NSString stringWithFormat:@"x² %@ %g %@ %g", bPlusMinusField, bTerm, cPlusMinusField, cTerm];
[self.trinomials insertObject:trinomial atIndex:0];
NSLog(@"%lu", (unsigned long)[self.trinomials count]);
}
#pragma mark - Table View
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.trinomials count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text = [NSString stringWithFormat:@"x² %@ %g %@ %g", bPlusMinusField, bTerm, cPlusMinusField, cTerm];
return cell;
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showDetail"]) {
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
NSDate *object = _objects[indexPath.row];
[[segue destinationViewController] setDetailItem:object];
}
}
@end
这是我认为解决问题所必需的代码:显然,我在实现的其余部分中有默认的重写方法。
这是编辑器视图控制器代码。当这个想法出现时,是的,“完成”按钮链接到我的 Main Storyboard 中的 -handleDoneButtonPushed: 方法。
-(IBAction)handleDoneButtonPushed:(id)sender {
[self dismissViewControllerAnimated:YES completion:NULL];
FTMasterViewController *masterVC = [[FTMasterViewController alloc] init];
[masterVC passTrinomial:factoring withBPlusMinusField:bPlusMinusField.text withBTerm:[bTriField.text doubleValue] withCPlusMinusField:cPlusMinusField.text withCTerm:[cTriField.text doubleValue]];
}
这个编辑器视图控制器只是以 UITextField 的形式获取一些值,并通过该类的对象将它们传递给主视图控制器。同样,当我单击顶部导航栏上的完成按钮时,它会关闭编辑器视图控制器,但不会使用检索到的值更新表视图。
帮助将不胜感激。:)