Created
April 7, 2011 03:02
-
-
Save threeve/906948 to your computer and use it in GitHub Desktop.
UILabel subclass with text aligned at top
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface RATopAlignedLabel : UILabel | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation RATopAlignedLabel | |
- (void) drawTextInRect:(CGRect)rect; | |
{ | |
[self.textColor setFill]; | |
[self.text drawInRect:rect withFont:self.font lineBreakMode:self.lineBreakMode alignment:self.textAlignment]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment