// AppDelegate.h
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
#import "AppDelegate.h"
#import "ViewController.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = [[ViewController alloc] init];
[self.window makeKeyAndVisible];
return YES;
}
- (void)applicationWillResignActive:(UIApplication *)application {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillEnterForeground:(UIApplication *)application {
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationDidBecomeActive:(UIApplication *)application {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillTerminate:(UIApplication *)application {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
@end
// ViewController.h
@interface ViewController : UIViewController
@end
============================
#import "ViewController.h"
#define MARGIN 20
#define SCREEMWIDTH [[UIScreen mainScreen] bounds].size.width
#define SCREENHEIGHT [[UIScreen mainScreen] bounds].size.height
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//创建赤、橙、黄、绿、青、蓝、紫视图,赤的加到背景上,橙的加到赤的上,黄的加到橙的上...
UIView *redView = [[UIView alloc] initWithFrame:CGRectMake(MARGIN, MARGIN, SCREEMWIDTH-2*MARGIN, SCREENHEIGHT-2*MARGIN)];
redView.backgroundColor = [UIColor redColor];
redView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.view addSubview:redView];
UIView *orangeView = [[UIView alloc] initWithFrame:CGRectInset(redView.bounds, MARGIN, MARGIN)];
orangeView.backgroundColor = [UIColor orangeColor];
orangeView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[redView addSubview:orangeView];
UIView *yellowView = [[UIView alloc] initWithFrame:CGRectInset(orangeView.bounds, MARGIN, MARGIN)];
yellowView.backgroundColor = [UIColor yellowColor];
yellowView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[orangeView addSubview:yellowView];
UIView *greenView = [[UIView alloc] initWithFrame:CGRectInset(yellowView.bounds, MARGIN, MARGIN)];
greenView.backgroundColor = [UIColor greenColor];
greenView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[yellowView addSubview:greenView];
UIView *cyanView = [[UIView alloc] initWithFrame:CGRectInset(greenView.bounds, MARGIN, MARGIN)];
cyanView.backgroundColor = [UIColor cyanColor];
cyanView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[greenView addSubview:cyanView];
UIView *blueView = [[UIView alloc] initWithFrame:CGRectInset(cyanView.bounds, MARGIN, MARGIN)];
blueView.backgroundColor = [UIColor blueColor];
blueView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[cyanView addSubview:blueView];
UIView *purpleView = [[UIView alloc] initWithFrame:CGRectInset(blueView.bounds, MARGIN, MARGIN)];
purpleView.backgroundColor = [UIColor purpleColor];
purpleView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[blueView addSubview:purpleView];
// // 启动一个定时器使用固定的间隔时间更改各个view的背景颜色
[NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(changeViewColor:) userInfo:purpleView repeats:YES];
}
-(void) changeViewColor:(id)sender{
NSTimer *timer = (NSTimer *)sender;
UIView *purpleView = [timer userInfo];
UIView *currentView = purpleView;
// 从内向外变化各个view的背景颜色
UIColor *tempColor = currentView.backgroundColor;
for(int i=0;i<6;i++){
UIView *superView = currentView.superview;
currentView.backgroundColor = superView.backgroundColor;
currentView = superView;
}
currentView.backgroundColor = tempColor;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end