Multiline UILabel의 수직 정렬 (Top / Center / Bottom) #import typedef enum VerticalAlignment { VerticalAlignmentTop, VerticalAlignmentMiddle, VerticalAlignmentBottom, VerticalAlignmentFlexible, } VerticalAlignment; @interface LWLabel : UILabel { VerticalAlignment verticalAlignment_; } @property (nonatomic, assign) VerticalAlignment verticalAlignment; - (CGRect)rectForText; @end @implementation LWLabel @synthesize verticalAlignment = verticalAlignme.. 더보기 이전 1 ··· 34 35 36 37 38 39 40 ··· 95 다음