文章标题

来源:互联网 发布:java自学源代码 编辑:程序博客网 时间:2024/06/10 14:44

这个是在一个试图控制器中写的
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
CustomView *customView = [[CustomView alloc] initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, self.view.frame.size.height / 5)];
customView.backgroundColor = [UIColor colorWithRed:0 green:70 / 255.0 blue:100 / 255.0 alpha:1];
[self.view addSubview:customView];
[customView release];
// Do any additional setup after loading the view.
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0, 20, self.view.frame.size.width, 40);
[self.view addSubview:button];
[button setTitle:@”阻断响应者链” forState:UIControlStateNormal];

[button setBackgroundColor:[UIColor greenColor]];[button addTarget:self action:@selector(buttonDidPress:) forControlEvents:UIControlEventTouchUpInside];

// 关闭交互
// NO - 关闭
// YES - 开启
button.userInteractionEnabled = NO;
// iOS 默认UIImageView和UILabel交互是关闭的

}

  • (void)buttonDidPress:(UIButton *)sender {
    NSLog(@”男哥最帅”);
    }

  • (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    NSLog(@”摇一摇开始”);
    }

  • (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    NSLog(@”摇一摇结束”);
    }

  • (void)touchesBegan:(NSSet

0 0
原创粉丝点击