2012-11-21 180 views
0

崩潰就行UITableView的崩潰我的應用程序

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ]; 

繼承人爲我的數據源的代碼(左含視圖控制器作爲數據源,默認情況下)

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{ 
    // Return the number of sections. 
    return 1; 
} 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 


    return 2; 
} 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString *CellIdentifier = @"albumCell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ]; 

    cell.textLabel.text = @"display cell"; 
    return cell; 
} 

和鏈接到一個單元格的打印屏幕 http://img526.imageshack.us/img526/495/screenshot20121121at115.png

我做了適用於應用程序的蘋果示例應用程序,它的工作原理,我找不到我在那裏和w我在這裏做的帽子。嘗試了百次調試。有人可以幫我找出我的代碼問題嗎?

編輯:刪除這是從剩下的東西我註釋掉

編輯2代碼:我刪除的視圖,並再次把它和它的工作,你猜我在首搞砸事情

+0

你在這一行''] objectForKey錯誤:@「名」];'',也許這是一個錯誤 – tkanzakic

+0

] objectForKey:@「name」];奇怪你的編譯器沒有給出錯誤? – kidsid49

+0

是否將標識添加到故事板單元? –

回答

0
]objectForKey:@"name"]; 

這條線的用途是什麼?你確定你粘貼了完整的代碼嗎?

還要檢查你的.xib文件,在你的表視圖,你應該鍵入CellIdentifier字段值

+0

這應該是一條評論,而不是一個答案。 – Moxy

+0

編輯出來,謝謝 –