0

我想显示图像、标题名称和两个左右按钮。我已经成功地做到了。这是代码:

    UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 200, 100)];

    UIButton *leftButton = [[UIButton alloc]init];
    [leftButton setImage:[UIImage imageNamed:@"previous-arrow.png"] forState:UIControlStateNormal];
    [leftButton addTarget:self action:@selector(goPrevious:) forControlEvents:UIControlEventTouchUpInside];
    [leftButton setFrame:CGRectMake(20, 50, 14, 13)];

    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Title.png"]];
    [imageView setFrame:CGRectMake(leftButton.frame.origin.x+leftButton.frame.size.width+4, 20, 50, 50)];

    UILabel *nameLabel = [[UILabel alloc]initWithFrame:CGRectMake(imageView.frame.origin.x+imageView.frame.size.width+4, 30, 100, 40)];
    NSString *cName = [NSString stringWithFormat:@"%@",[NameArray objectAtIndex:indexPath.section]];

    [nameLabel setTextColor:[UIColor whiteColor]];
    [nameLabel setBackgroundColor:[UIColor clearColor]];
    [nameLabel setContentMode:UIViewContentModeScaleAspectFill];
    [nameLabel setTextAlignment:UITextAlignmentLeft];
     CGSize expectedLabelSize = [cName sizeWithFont:nameLabel.font 
                                        constrainedToSize:CGSizeMake(100, 40) 
                                            lineBreakMode:nameLabel.lineBreakMode]; 
    [nameLabel setFrame:CGRectMake(imageView.frame.origin.x+imageView.frame.size.width+4, 35, expectedLabelSize.width, expectedLabelSize.height)];
    nameLabel.text=cName;

    UIButton *rightButton = [[UIButton alloc]init];
    [rightButton setImage:[UIImage imageNamed:@"next-arrow.png"] forState:UIControlStateNormal];
    [rightButton setFrame:CGRectMake(nameLabel.frame.origin.x+nameLabel.frame.size.width+4, 50, 14, 13)];
    [rightButton addTarget:self action:@selector(next:) forControlEvents:UIControlEventTouchUpInside];

    [view addSubview:nameLabel];
    [view addSubview:imageView];
    [view addSubview:leftButton];
    [view addSubview:rightButton];

    self.navigationItem.titleView = view; 

这段代码写在 cellForRowAtIndexPath 中。该视图在导航栏上正确显示,但在滚动 tableview 之后。最初它显示在错误的坐标上。

请建议。

4

1 回答 1

2

将此代码放入viewWillAppearor中viewDidAppear。它并不意味着在 tableView 协议中!

于 2012-08-09T06:56:39.253 回答