作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Segcontrol = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Mind", @"Munches", nil]];
Segcontrol.frame=CGRectMake(CGRectGetWidth(self.view.frame)/4.5, self.view.frame.size.height/4, CGRectGetWidth(self.view.frame)/1.8, CGRectGetHeight(self.view.frame)/12);
[Segcontrol addTarget:Segcontrol action:@selector(segtap:) forControlEvents:UIControlEventValueChanged];
[Segcontrol setSelectedSegmentIndex:0];
[Segcontrol setTintColor:[UIColor blueColor]];
Segcontrol.layer.cornerRadius=5;
[self.view addSubview:Segcontrol];
-(void)segtap:(id)sender{
if (Segcontrol.selectedSegmentIndex==0) {
self.view.backgroundColor=[UIColor blueColor];
}else if (Segcontrol.selectedSegmentIndex==1){
self.view.backgroundColor=[UIColor redColor];
}
}
最佳答案
您正在添加 SegmentControl
对象 Segcontrol
作为段操作的目标。而不是这个对象 self
应该被添加为目标。像下面这样更改代码,您就可以开始了。
[Segcontrol addTarget:self action:@selector(segtap:) forControlEvents:UIControlEventValueChanged];
关于ios - 我想我在分配 segmentcontrol 时犯了一些错误..我收到一个错误 [无法识别的选择器发送到实例],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32096260/
我是一名优秀的程序员,十分优秀!