摘要:
头文件#import <UIKit/UIKit.h>@interface UIStrokeLabel:UILabel - (void)setStrokeColor:(UIColor*)strokeColor width:(CGFloat)width;@end实现文件#import "UIStrokeLabel.h"@interface UIStrokeLabel (){ UIColor *strokeColor_; CGFloat strokeWidth_;}@end@implementation UIStrokeLabel #pragma mark - ini 阅读全文