Skip to content

Instantly share code, notes, and snippets.

@yume190
Created June 22, 2014 03:43
Show Gist options
  • Save yume190/480ebf567af266bcc942 to your computer and use it in GitHub Desktop.
Save yume190/480ebf567af266bcc942 to your computer and use it in GitHub Desktop.
brucepdx 垂直式對齊 UILabel(https://discussions.apple.com/thread/1759957?tstart=0
//
// 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