工作,我有我的storyboard.It一個問題是工作正常,但是當我試圖改變的UITableView的內容屬性就引起以下錯誤UITableView的內容「靜態細胞」不iOS7
斷言失敗 - [UITableView的dequeueReusableCellWithIdentifier:forIndexPath:],/SourceCache/UIKit/UIKit-2903.23/UITableView.m 由於未捕獲的異常'NSInternalInconsistencyException',原因:'無法使標識符Cell出院 - 必須註冊一個nib或類標識符或連接故事板中的原型單元格'
我想設計一個靜態單元格的分組表格。提前感謝
代碼
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
return cell;
}
添加該代碼,如果你不同意你的代碼,我們將無法幫助你 –
- ( NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { //返回段數。 return 2; (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 3;(NSInteger) } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {0} {0}靜態NSString * CellIdentifier = @「Cell」; UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; return cell; } –
@AdnanChaudhry:將代碼添加到問題中,您可以編輯問題並添加代碼,如此..請參閱問題 –