九宫格的视图效果
应用介绍
这是一个九宫格的视图效果,实现九宫格效果。点击有提示,可以改变标签文字,希望能够帮到大家的学习和使用。 使用方法: 导入头文件: #import "Model.h" #import "MyView.h" #import "MyLabel.h" 创建九宫格视图对象并初始化: MyView *view = [[MyView alloc] initWithFrame:CGRectMake(viewX, viewY, W, H) Model:model MyButtonBlock:^{ _myLabel = [[MyLabel alloc] init]; [self.view addSubview:_myLabel]; NSTimer *timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(timer) userInfo:nil repeats:NO]; [timer fire]; }];

发表评论 取消回复