我一直在閱讀像瘋了試圖解決我的問題的文檔,但我不相信我的問題太困難了,我可能會錯誤地解決它。這裏是我的UIViewController
:UITableView中的TableCell視圖沒有出現在模擬器iOS7中
這裏就是它看起來像在模擬器:
我只需要我的填充細胞實際出現在模擬器。我已在.H使用這個數據和委託來源:
@property (weak, nonatomic) IBOutlet UITableView *grTableView;
@property(nonatomic, assign) id<UITableViewDataSource> dataSource;
@property(nonatomic, assign) id<UITableViewDelegate> delegate;
這.M的viewDidLoad
:
grTableView.dataSource = self;
grTableView.delegate = self;
而且我想設置的間距用這種方法(我請注意,我可以做的限制,但我不知道怎麼):
-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section
{
if(section == 0)
return 6;
return 1.0;
}
-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section
{
return 5.0;
}
-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section
{
return [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
}
-(UIView*)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section
{
return [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
我目前還嘗試使用了這些細胞的方法(實現當我德爾ETE這些方法,單元格邊框出現在模擬器灰線,但這些細胞不人口):
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
- (NSInteger)numberOfRowsInSection:(NSInteger)section;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
我怎麼可以簡單地讓我的細胞內部的對象(在故事板)出現在模擬器和工作? 如果您需要查看文檔大綱,.M,或.H,或其他模擬器運行只是要求它,我將發佈。
附:使用bottomLayoutGuide約束底部的UIButton。
編輯:下面是cellForRowAtIndexPath:
方法實現:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
return grImageNameCell;
return grBioCell;
}
這裏對於那些IBOutlets的.H代碼:
@property (weak, nonatomic) IBOutlet UITableViewCell *grImageNameCell;
@property (weak, nonatomic) IBOutlet UITableViewCell *grBioCell;
怎樣的 - (UITableViewCell的*)的tableView:(UITableView的*)的tableView的cellForRowAtIndexPath:(NSIndexPath *)indexPath實施?你展示一個聲明,並談論當你移除它時會發生什麼,但你如何實現它? – valheru
您是否爲每個原型單元格設置了單元重用標識符? – valheru
我沒有細胞重用標識符,但我只想要兩個部分..或兩個細胞我猜。一秒鐘,我將在編輯中發佈實現 – Chisx