什么方法都可以,不管是系统的还是自定义的都可以。但是如果是自定义的,@selector括号里面的方法必须存在。例如button的点击方法,button addTarget:self action:@selector(buttonAction:) forControlEvents:(UIControlEventTouchUpInside)];那么buttonAction:这个方法必须要存在,哪怕是空实现都不要紧。不存在就会崩溃!