• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iphone - 以编程方式更改 UITableview Header/foot 的内容

[复制链接]
菜鸟教程小白 发表于 2022-12-13 09:05:49 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个表格 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap