objective-c – 自定义UILabel不显示文本

前端之家收集整理的这篇文章主要介绍了objective-c – 自定义UILabel不显示文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经制作了一个自定义的UILabel类,我在框架的底部画了一条红线.
红线显示但我无法显示文本.
#import <UIKit/UIKit.h>


@interface LetterLabel : UILabel {

}

@end    


#import "LetterLabel.h"


@implementation LetterLabel


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


- (void)drawRect:(CGRect)rect {
    CGContextSetLineWidth(UIGraphicsGetCurrentContext(),2.0);
    CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(),1.0,0.0,1.0);
    CGContextBeginPath(UIGraphicsGetCurrentContext());
    CGContextMoveToPoint(UIGraphicsGetCurrentContext(),self.frame.size.height);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(),self.frame.size.width,self.frame.size.height);
    CGContextStrokePath(UIGraphicsGetCurrentContext());
}


- (void)dealloc {
    [super dealloc];
}


@end
#import <UIKit/UIKit.h>
#import "Word.h"

@interface WordView : UIView {
    Word *gameWord;
}

@property (nonatomic,retain) Word *gameWord;

@end

@implementation WordView

@synthesize gameWord;

- (id)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        self.backgroundColor = [UIColor whiteColor];

        LetterLabel *label = [[LetterLabel alloc] initWithFrame:CGRectMake(0,20,30)];
        label.backgroundColor = [UIColor cyanColor];
        label.textAlignment = UITextAlignmentCenter;
        label.textColor = [UIColor blackColor];
        [label setText:@"t"];
        [self addSubview:label]; 
    }
    return self;
}


- (void)drawRect:(CGRect)rect {
    // Drawing code
}


- (void)dealloc {
    [gameWord release];
    [super dealloc];
}


@end

解决方法

当然你的LetterLabel需要调用UILabel的drawRect:在某些时候?
-(void)drawRect:(CGRect)rect {
   // Your stuff goes here
   [super drawRect: rect];
}
原文链接:https://www.f2er.com/c/117744.html

猜你在找的C&C++相关文章