iphone - TableView 变成 tabBarController
<p><p>我开始了一个选项卡式应用程序项目,在我的第一个 View 中,我想获得一个填充列表,所以我声明了一个 NSArray,如下所示:</p>
<pre><code>@interface agrospineFirstViewController : UIViewController <UITableViewDelegate ,UITableViewDataSource>
{
NSArray*JournalList;
}
@property (nonatomic,retain) NSArray *JournalList;
@end
</code></pre>
<p>我在 .m 上添加了以下内容:</p>
<p>[ super viewDidLoad];</p>
<pre><code>//initialisation de la liste
JournalList = ;
//initialisation du table View
UITableView* tableView=[ initWithFrame:[ applicationFrame]style:UITableViewStylePlain];
//population de la vue
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return ;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = ;
if (cell == nil)
cell = [ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
// Configuration de la cellule
NSString *cellValue = ;
cell.textLabel.text = cellValue;
return cell;
}
</code></pre>
<p>我也将表格列表放到了 View 中...但仍然在 numberOfRowsInSection 上显示错误,要求将“:”替换为“;”
有什么改进建议吗?</p>
<p>感谢您的宝贵时间</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我认为你还没有像这样关闭 <strong>viewDidLoad</strong> 方法:</p>
<pre><code>- (void)viewDidLoad {
;
//initialisation de la liste
JournalList = ;
//initialisation du table View
UITableView* tableView=[ initWithFrame:[ applicationFrame]style:UITableViewStylePlain];
//population de la vue
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return ;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = ;
if (cell == nil)
cell = [ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
// Configuration de la cellule
NSString *cellValue = ;
cell.textLabel.text = cellValue;
return cell;
}
</code></pre></p>
<p style="font-size: 20px;">关于iphone - TableView 变成 tabBarController,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10121050/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10121050/
</a>
</p>
页:
[1]