OGeek|极客世界-中国程序员成长平台

标题: iphone - 以编程方式更改 UITableview Header/foot 的内容 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 09:05
标题: iphone - 以编程方式更改 UITableview Header/foot 的内容

我有一个表格 View ,它加载另一个 xib 文件并使用该新 xib 文件的内容来显示标题。在这个新的 xib 中,我有一个 UIImageView 和一个标签。我希望能够更改图像,并且 View 中的标签确实加载了。我已经正确连接了界面生成器中的所有内容。它只是不会改变图像或文本标签。

头文件

////h file///
#import <UIKit/UIKit.h>
#import "MyProfile.h"

@interface MainMenu : UITableViewController
{
    IBOutlet UIView *headerView;
    UIImageView *imageview;
    UILabel *label;
}

@property (nonatomic, retain) IBOutlet UIImageView *imageview;
@property (nonatomic, retain) IBOutlet UILabel *label;

-(UIView *)headerView;
-(IBAction)fnid)sender;

@end

部分 .m 文件

///// partial .m file////
-(UIView *)headerView
{
    if(!headerView)
    {
        [[NSBundle mainBundle] loadNibNamed"HeaderView" owner:self options:nil];
    }

    return headerView;
}

-(UIView *)tableViewUITableView *)tableView viewForHeaderInSection:  (NSInteger)section
{
    return [self headerView];
}

-(CGFloat) tableViewUITableView *)tableView heightForHeaderInSectionNSInteger)section
{
    return [[self headerView] bounds].size.height;
}

-(id) init
{
    self = [super initWithStyle:UITableViewStyleGrouped];

    return self;
}

- (id)initWithStyleUITableViewStyle)style
{
    return [self init];
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    [[self navigationItem] setTitle"The Table"];

    menuitems = [[NSMutableArray alloc] init];

    [menuitems addObject"item one"];
    [menuitems addObject"item two"];

    fieldnames = [[NSMutableArray alloc] init];

    [fieldnames addObject"Date of Birth"];
    [fieldnames addObject"Nationality"];

    label.text = @"new label value will not be displayed!";
}

为什么文本标签不会更新?

我已将 header view 的 xib 文件的所有者设置为主菜单,并将 header view.xib 中的标签连接到 IBOutlet。

谢谢。



Best Answer-推荐答案


使用此方法在表格 View 中添加标题:

- (UIView *)tableViewUITableView *)tableView viewForHeaderInSectionNSInteger)section {
    UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0,10,tableView.frame.size.width,21)] autorelease];
    UILabel *feelingDate;
    feelingDate = [[UILabel alloc] init];
    feelingDate.textAlignment = UITextAlignmentLeft;
    feelingDate.textColor=[UIColor whiteColor];
    feelingDate.font=[UIFont boldSystemFontOfSize:14];
    feelingDate.text= [keyArray objectAtIndex:section];
    feelingDate.frame=CGRectMake(10,-5,tableView.frame.size.width,21);
    feelingDate.backgroundColor = [UIColor clearColor];
    [headerView addSubview:feelingDate];
    [feelingDate release];
    return headerView;  
}

关于iphone - 以编程方式更改 UITableview Header/foot 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7342704/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://sqlite.in/) Powered by Discuz! X3.4