Leí en este mismo sitio cómo insertar y UILabel (subclase UILabel y anular los métodos necesarios). Antes de agregarlo a mi aplicación, decidí probarlo en una aplicación de prueba independiente. El código se muestra a continuación.Subclase UILabel
Aquí es MyUILabel.h
#import <UIKit/UIKit.h>
@interface MyUILabel : UILabel
@end
Aquí es 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)];
}
Aquí está mi ViewController.h
#import <UIKit/UIKit.h>
#import "MyUILabel.h"
@interface ViewController : UIViewController
{
MyUILabel *myDisplay;
}
@property (strong, nonatomic) IBOutlet MyUILabel *myDisplay;
@end
Aquí es 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
Ninguno de los métodos en MyUILabel.m (que Im primordial) serán llamadas.
Conocimientos sobre por qué son muy apreciados.
Saludos,
Ramon.