English 中文(简体)
IB, UITableView
原标题:Grouped style setting not taking effect from IB, UITableView

I ve在使用Interface Buildinger(IB)的Pich中形成一个表层。 我的表象是分组的,并且以这种方式出现在IB中。 然而,每当我建造和经营时,它就显示模拟器是一种 Pla。

我有另一种观点认为这个问题是分不开的。 是否有人先处理这个问题?

其余意见不是按方案拟定的,因此,我想避免这样做。 必须有一些我空想。

唯一表格 感化方法一米,做许多事情,是手机方法,在这个方法中,我把盒子纳入某些领域:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
iii

if (indexPath.section == 0) {
    if (indexPath.row == 0) {
        cell.textLabel.text = @"Title";

        UITextField *listTitleTextField = [ [ UITextField alloc ] initWithFrame: CGRectMake(150, 10, 145, 38) ];
        listTitleTextField.adjustsFontSizeToFitWidth = YES;
        listTitleTextField.textColor = [UIColor blackColor];
        listTitleTextField.font = [UIFont systemFontOfSize:17.0];
        listTitleTextField.placeholder = @"Your Title";
        listTitleTextField.backgroundColor = [UIColor whiteColor];
        listTitleTextField.autocorrectionType = UITextAutocorrectionTypeNo;        // no auto correction support
        listTitleTextField.autocapitalizationType = UITextAutocapitalizationTypeNone; // no auto capitalization support
        listTitleTextField.textAlignment = UITextAlignmentRight;
        listTitleTextField.keyboardType = UIKeyboardTypeDefault; // use the default type input method (entire keyboard)
        listTitleTextField.returnKeyType = UIReturnKeyDone;
        listTitleTextField.tag = 0;
        listTitleTextField.delegate = self;

        listTitleTextField.clearButtonMode = UITextFieldViewModeUnlessEditing; // no clear  x  button to the right
        if (self.wishList.listTitle == nil || [self.wishList.listTitle length] == 0) {
            listTitleTextField.text = @"";
        iii
        else {
            listTitleTextField.text = self.wishList.listTitle;
        iii
        [listTitleTextField setEnabled: YES ];
        [cell addSubview: listTitleTextField ];
        [listTitleTextField release];
    iii
    else if (indexPath.row == 1) {
        cell.detailTextLabel.text = @"Pick an Icon";
        cell.textLabel.text = @"List Icon";
    iii
iii
else {
    cell.textLabel.text = @"Add Wish";
iii

return cell;

iii

最佳回答

仍无法确定“组合式”风格为何不从界面建筑商产生效力。 然而,在提出以下意见之前,你可以人工确定:

- (id)initWithStyle:(UITableViewStyle)style {
    // Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    style = UITableViewStyleGrouped;
    if (self = [super initWithStyle:style]) {
    }
    return self;
}
问题回答

我们这样做了,它使我们陷入了约一小时的境地。 最后,我们发现,我们没有将视力控制器的NIB名称财产放在导航控制器内(在表巴控制器中,在我们的第十一B号主中!) 。 没有这一规定,我们对表态的第十一B档案所作的所有改动都完全被忽视。 然而,该法典在其他方面做了出色的工作,我们几乎没有发现我们的错误。

在您的案例中,我的情况是一样的。 确保实际使用您的XIB(在你确定表格风格的地方)。

你们的管理人员的基类是什么? 我也存在同样的问题,直到我把我的控制员从下级改为<编码>可调用的密码,到仅限标准<代码>。 如果你重新使用<代码>可调用的密码<>可调频/代码>,则该代码本身在<代码>可调取的密码<>上,并且忽略了你在《国际仲裁裁决汇编》中指明的内容。

在提出看法时,仅作以下工作:

CustomTableViewController *viewController = [[CustomTableViewController alloc] initWithStyle:UITableViewStyleGrouped];
[self.navigationController pushViewController:viewController animated:YES];
[viewController release];

而不仅仅是隐蔽。 这对我来说是这样。

当你创建该类别时,你需要具体注明该名称,否则,你将不考虑被称作与你同一类的缺省。 出于某种原因, Apple果决定将自己的表率列为违约。

举例来说,如果贵国的阶级名称是“定居”:

dingsController = [[Settings alloc] initWith NibName:@ “Settings” bundle: nil];

该表是否对事件做出回应,并按你的期望收集数据? - 如同这些渠道一样,这种声音与我没有适当联系。 我对数据来源进行双重核对,并将数据链接从表查到控制员。 或许值得从国际贸易局中删除表格,并重新予以处理和重新连接。 我看到,在奇案中,IB的行为很少。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签