2012-07-14 103 views
1

嗨我試圖將數據保存到核心數據中,並且遇到了一些麻煩......我有一個團隊實體和一個玩家實體團隊實體設置爲一對多關係玩家實體...在我的「NewTeamViewController」中有兩個部分,第二部分是您將玩家添加到團隊的位置。在章節標題中有一個按鈕來添加一個新的播放器...當按下該按鈕時,一個新的單元格將出現三個textField,每個textField都有默認文本(不是佔位符文本),然後我將新播放器添加到MutableSet這將作爲球隊球員加入。桌面視圖使用自定義單元格(這是三個文本字段所在的地方)在覈心數據中保存來自tableview單元格的數據

團隊正確保存,但我無法保存播放器單元格中三個文本字段的數據。它只是將默認文本保存在播放器的單元格中。

我不知道如何或從何處將數據從新添加的單元格添加到新添加的播放器對象。

下面是一些代碼...

-(void)saveButtonWasPressed { 

self.team =[NSEntityDescription insertNewObjectForEntityForName:@"Team" inManagedObjectContext:self.managedObjectContext]; 

team.schoolName = _schoolName.text; 
team.teamName = _teamName.text; 
team.season = _season.text; 
team.headCoach = _headCoach.text; 
team.astCoach = _assistantCoach.text; 

player.firstName = cell.playerFirstName.text; 
player.lastName = cell.playerLastName.text; 
player.number = cell.playerNumber.text; 

[self.team addPlayers:_tempSet]; 

[self.managedObjectContext save:nil]; 
[self.navigationController popViewControllerAnimated:YES];  
} 
////////////////////////////////////////////////////////////////////////////////////////////////// 


-(void)addPlayerButton { 

player = (Player *)[NSEntityDescription insertNewObjectForEntityForName:@"Player" 
                  inManagedObjectContext:self.managedObjectContext]; 

[_tempSet addObject:player]; 

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationFade];  
} 

回答

0

添加您NewTeamViewController爲每個文本字段的控制事件UIControlEventEditingChanged目標。你可以用代碼(cellForRowAtIndexPath...)或你的筆尖或故事板做到這一點。我會爲每個單元格中的三個不同文本字段中的每一個使用不同的操作方法。這裏是你的操作方法可能如下所示:

// Helper method 
- (Player *)playerForTextField:(UITextField *)textField 
{ 
    NSIndexPath *indexPath = [self.tableView indexPathForCell:textField.superview]; 
    return [_tempArray objectAtIndex:indexPath.row]; 
} 

- (IBAction)firstNameDidChange:(UITextField *)textField 
{ 
    Player *player = [self playerForTextField:textField]; 
    player.firstName = textField.text; 
} 

- (IBAction)lastNameDidChange:(UITextField *)textField 
{ 
    Player *player = [self playerForTextField:textField]; 
    player.lastName = textField.text; 
} 

- (IBAction)numberDidChange:(UITextField *)textField 
{ 
    Player *player = [self playerForTextField:textField]; 
    player.number = textField.text; 
} 

此外,改變你的_tempSet_tempArray因爲知道的在表中的選手的順序是非常有用的。

+0

嗨,謝謝你的回答。但首先我不使用接口構建器。其次,我無法將_TempSet更改爲_tempArray,因爲核心數據需要使用NSSet來存儲數據而不是陣列... – Luke 2012-07-15 15:12:38