[Code Note] Text drive lamp effect, code note drive Lamp
I ,.
2. Engineering Drawing.
3. Code.
RootViewController. h
#import <UIKit/UIKit.h>@interface RootViewController : UIViewController@end
RootViewController. m
# Import "RootViewController. h "# import" UXLabel. h "@ interface RootViewController () @ end @ implementation RootViewController-(id) initWithNibName :( NSString *) bundle :( NSBundle *) handle {self = [super initWithNibName: nibNameOrNil bundle: nibBundleOrNil]; if (self) {// Custom initialization} return self;}-(void) viewDidLoad {[super viewDidLoad]; // Do any additional setup after loadin G the view. UXLabel * label = [[UXLabel alloc] initWithFrame: CGRectMake (50,100,100, 30)]; label. backgroundColor = [UIColor redColor]; label. stringColor = CGRectMake (0, 0, 0, 1); label. string = @ "dear, how are you? "; Label. stringFont = 18.0; [self. view addSubview: label]; [label updateLabel];}