ios - 在自定义 UIview 中设置 UItableview 的委托(delegate)和数据源
<p><p>我有一个自定义 <code>UIView</code>,它有几个不同的 View ,还有一个 <code>UITableview</code>。</p>
<p>我创建了一个自定义类,它是 <code>UITableViewController</code> 的子类。这将控制 <code>UITableview</code> 和 <code>UITableView</code> 的 Prototype 单元格。</p>
<p>如果我将 <em>delegate</em> 和 <em>datasource</em> 设置为父 View ,我会收到以下错误:</p>
<pre><code>-: unrecognized selector sent to instance 0x10c92f190
</code></pre>
<p>其中 RoadSafetyAppView Controller 是父 View 。但是,如果我根本不设置委托(delegate)和数据源,我的表不会加载我在自定义类中声明的图像,如下所示:</p>
<pre><code>@implementation MenuController
@synthesize menuArray;
-(void) viewDidLoad
{
;
self.menuArray = ;
];
];
];
];
}
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return ;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"CellIdentifier";
MenuCustomCell *cell = ;
cell.menuImage.image =;
switch (indexPath.row) {
case 0:
cell.menuImage.image =;
break;
case 1:
cell.menuImage.image =;
break;
case 2:
cell.menuImage.image =;
break;
case 3:
cell.menuImage.image =;
break;
default:
break;
}
return cell;
}
</code></pre>
<p>有人可以指出我的图像哪里出了问题,或者我需要将我的委托(delegate)/数据源设置为什么吗?</p>
<p>谢谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p> <img src="/image/Y6oiv.png" alt="See connections for UITableView"/>在你的 MenuController.h</p>
<pre><code>MenuController : UIViewController<UITableViewDelegate,UITableViewDataSource>
</code></pre>
<p>并在 Interface Builder 中将 UITableView 与 Delegate&Datasource 连接起来..</p>
<p>希望它能解决您的问题..!</p></p>
<p style="font-size: 20px;">关于ios - 在自定义 UIview 中设置 UItableview 的委托(delegate)和数据源,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25598976/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25598976/
</a>
</p>
页:
[1]