使用nib作为带有nib类的表部分头

时间:2013-04-27 20:07:54

标签: ios uitableview uiview uibutton

我想创建一个加载nib文件的节头,并将其设置为标题UIView。这个nib文件还有一个关联的类,其中连接了出口和动作,所以我想用正常的nib加载那个类。

我在网上搜索过,发现了几个类似的答案,但我无法为我工作。在玩了几天之后,我设法让视图正确显示但是尽管添加了连接并告诉文本显示不同,但它没有做任何事情。

例如,它应该清除部分标题文本,如果它是使用nil的init并且它仍然显示相同的文本,尝试更改它也不会反映任何一个,并且不会触发与该按钮建立的任何连接。

这是视图的视图控制器

@interface ADUNewRowHeaderViewController : UIViewController

@property (strong, nonatomic) IBOutlet UILabel *sectionTitleField;
@property (strong, nonatomic) IBOutlet UIButton *addRowBtn;

@property(strong,nonatomic) NSString* sectionTitle;

- (id)initWithNibName:(NSString *)nibNameOrNil
               bundle:(NSBundle *)nibBundleOrNil
                title:(NSString*) titleOrNil;

@end

这是实现

@implementation ADUNewRowHeaderViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil title:(NSString *)titleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self)
    {
        if(titleOrNil != nil)
        {
            [self setSectionTitle:titleOrNil];
        }
        else
        {
            [self setSectionTitle:@""];
        }
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)setSectionTitle:(NSString *)sectionTitle
{
    _sectionTitle = sectionTitle;
    [[self sectionTitleField] setText:sectionTitle];
}
@end

在实际的表视图控制器中,它被列为

@property(nonatomic, strong) ADUNewRowHeaderViewController* secHeader;

并在viewDidLoad下的实现文件中作为

[self setSecHeader:[[ADUNewRowHeaderViewController alloc] initWithNibName:nil bundle:nil title:nil]];
[[[self secHeader] addRowBtn] addTarget:self action:@selector(addNewRow:) forControlEvents:UIControlEventTouchUpInside];

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    return [[self secHeader] view];
}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return [[self secHeader] view].bounds.size.height;
}

这是行动的方法声明

- (IBAction)addNewRow:(id)sender;

1 个答案:

答案 0 :(得分:1)

您应该创建UIView,而不是UIViewController子类。 .m将包含:

- (id)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame])
    {
        [self setUp];
    }

    return self;
}

- (void)awakeFromNib
{
    [super awakeFromNib];
    [self setUp];
}

- (void)setUp
{    
    [[NSBundle mainBundle] loadNibNamed:@"YourNibName" owner:self options:nil];
    CGRect frame = self.frame;
    self.view.frame = CGRectMake(0, 0, frame.size.width, frame.size.height);
    [self addSubview:self.view];

    ... do other initialisations here ...
}

.h

@interface ADUNewRowHeaderView : UIView

@property (nonatomic, strong) IBOutlet UIView*   view;

然后在XIB中:照常创建类ADUNewRowHeaderView的文件所有者。并将XIB的顶级View的Referencing Outlet连接到上面的view属性(即在File的所有者中)。

然后你有一个UIView子类,你可以把它放在另一个XIB上(作为你将Class设置为ADUNewRowHeaderView的UIView),或者在代码中实例化并添加为子视图。

(或者你可以在代码中创建UIView及其子视图(按钮,标签......);然后你就不需要XIB了。但是这只有在UIView很简单且逻辑很少的情况下才有效。以及很少易于在代码中布局的UI元素。)