您好,我在想如何根據從單元格標題中選擇的字符串來加載一個筆尖。 這裏要說的是,我使用但我不能得到任何結果的代碼..根據用戶單元格輸入加載一個筆尖
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
//FinalViewController *anotherViewController = [[FinalViewController alloc] initWithNibName:@"FinalViewController" bundle:nil];
if ([[tableView cellForRowAtIndexPath: indexPath].textLabel.text isEqualToString: @"Ath 1"])
{
LastViewController *lastViewController = [[LastViewController alloc]
initWithNibName:@"LastViewController" bundle:nil];
我不明白爲什麼這不工作?
究竟什麼不行?要找到問題,您可以嘗試將if條件中的大表達式拆分爲小塊,以查看它的哪部分失敗。 – Vladimir 2010-08-09 09:21:47