Created
June 22, 2014 03:43
-
-
Save yume190/480ebf567af266bcc942 to your computer and use it in GitHub Desktop.
brucepdx 垂直式對齊 UILabel(https://discussions.apple.com/thread/1759957?tstart=0)
This file contains hidden or 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
// | |
// VerticallyAlignedLabel.h | |
// | |
#import <Foundation/Foundation.h> | |
typedef enum VerticalAlignment { | |
VerticalAlignmentTop, | |
VerticalAlignmentMiddle, | |
VerticalAlignmentBottom, | |
} VerticalAlignment; | |
@interface VerticallyAlignedLabel : UILabel { | |
@private | |
VerticalAlignment verticalAlignment_; | |
} | |
@property (nonatomic, assign) VerticalAlignment verticalAlignment; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment