我UITableViewCell
使用故事板创建了一个自定义。
我像这样加载它:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
HJAddCell *cell = [tableView dequeueReusableCellWithIdentifier:@"addCell"];
// setting properties of cell
return cell;
}
现在我需要在初始化期间以编程方式添加更多自定义。但问题是在 myHJAddCell
中,init
没有调用这些方法。我应该怎么做才能init
调用该方法,或者是否有任何其他方法可以在初始化时以最小的努力向自定义单元类添加更多自定义代码。
更新:我需要为 UILabel 添加边框。我在故事板中没有找到任何可以做到这一点的事情。