SubClassing UILabel

时间:2012-04-04 03:16:41

标签: uilabel subclass

我在同一个网站上读到了如何插入和UILabel(子类UILabel并覆盖所需的方法)。在将它添加到我的应用程序之前,我决定在一个独立的测试应用程序中测试它。代码如下所示。

这是MyUILabel.h

#import <UIKit/UIKit.h>

@interface MyUILabel : UILabel

@end

这是MyUILabel.m

#import "MyUILabel.h"
#import <QuartzCore/QuartzCore.h>

@implementation MyUILabel

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}

// for border and rounding
-(void) drawRect:(CGRect)rect
{
    self.layer.cornerRadius = 4.0;
    self.layer.borderWidth = 2;

    [super drawRect:rect];
}

// for inset
-(void) drawTextInRect:(CGRect)rect
{
    UIEdgeInsets insets = {0, 5, 0, 5};

    [super drawTextInRect: UIEdgeInsetsInsetRect(rect, insets)];
}

这是我的ViewController.h

#import <UIKit/UIKit.h>
#import "MyUILabel.h"


@interface ViewController : UIViewController
{
    MyUILabel   *myDisplay;
}

@property (strong, nonatomic) IBOutlet MyUILabel *myDisplay;

@end

这是ViewController.m:

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

@synthesize myDisplay;

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

    myDisplay.text = @"Hello World!";
}

- (void)viewDidUnload
{
    [self setMyDisplay:nil];
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

@end

MyUILabel.m(我重写)中没有任何方法被调用。

深入了解原因。

此致

Ramon的。

1 个答案:

答案 0 :(得分:5)

确定。我做了一些进一步的挖掘,在Xcode中,在查看nib文件时可以看到一个字段。它是'Identity Inspector'(左起第3个图标)。这需要从UILabel更改为MyUILabel。

现在有效!