iPhone - 以正确的方式子类化 UIToolbar?

发布于 2024-09-27 12:31:51 字数 632 浏览 7 评论 0原文

  1. 我创建了一个名为 CustomToolbar
  2. 然后我创建了一个空笔尖,添加了一个 工具栏,并设置工具栏 类为“CustomToolbar”。

在代码中初始化 CustomToolbar 以便我的类使用 nib 文件的正确方法是什么?

我已经编写了代码来执行此操作,但我知道这不是正确的方法并且存在泄漏。

@interface CustomToolbar : UIToolbar {
}
@property (nonatomic, retain) IBOutlet UIBarButtonItem *button;
@end

@implementation CustomToolbar
- (id)initWithDelegate
{
     NSArray *objects = [[NSBundle mainBundle]
      loadNibNamed:@"CustomToolbar" 
      owner:nil 
      options:nil];
    if (self = (CustomToolbar*) [objects objectAtIndex:0])
    {
        //do some work here
    }
    return self;
}
@end
  1. I created a new Class named
    CustomToolbar
  2. Then i created an empty nib, added a
    toolbar to it, and set the toolbar
    class to "CustomToolbar".

What is the proper way of initializing CustomToolbar In code so that my class uses the nib file?

I already have written the code to do that but i know it's not the correct way and it has a leak.

@interface CustomToolbar : UIToolbar {
}
@property (nonatomic, retain) IBOutlet UIBarButtonItem *button;
@end

@implementation CustomToolbar
- (id)initWithDelegate
{
     NSArray *objects = [[NSBundle mainBundle]
      loadNibNamed:@"CustomToolbar" 
      owner:nil 
      options:nil];
    if (self = (CustomToolbar*) [objects objectAtIndex:0])
    {
        //do some work here
    }
    return self;
}
@end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女净妖师 2024-10-04 12:31:51

NIB 将在您的自定义类上调用 initWithCoder:,如下所示:

- (id)initWithCoder:(NSDecoder*)aDecoder {
    self = [super initWithCoder:aDecoder];
    if( self ) {
        // Do something
    }
    return self;
}

如果您确实想按照现在的方式加载它,则需要保留从 <代码>loadNibNamed。

The NIB will call initWithCoder: on your custom class, like this:

- (id)initWithCoder:(NSDecoder*)aDecoder {
    self = [super initWithCoder:aDecoder];
    if( self ) {
        // Do something
    }
    return self;
}

If you really want to load it the way you do now, you need to retain the object returned from loadNibNamed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文