作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标:
代码:
- (void)addMyButton{ // Method for creating button, with background image and other properties
UIButton *playButton = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
[self.view addSubview:playButton];
playButton.frame = CGRectMake(150, 150, 100, 100);
//set title,backgroundcolor...
UIImage *buttonImageNormal = [UIImage imageNamed:@"red.png"];
UIImage *strechableButtonImageNormal = [buttonImageNormal stretchableImageWithLeftCapWidth:0 topCapHeight:0];
[playButton setBackgroundImage:strechableButtonImageNormal forState:UIControlStateNormal];
if([playButton isTouchInside:[UIImage buttonImageNormal]]) //This line warning
{
UIImage *buttonImageNormal2 = [UIImage imageNamed:@"yellow.png"];
UIImage *strechableButtonImageNormal2 = [buttonImageNormal2 stretchableImageWithLeftCapWidth:12 topCapHeight:0];
[playButton setBackgroundImage:strechableButtonImageNormal2 forState:UIControlStateNormal];
}
}
请告诉我我目前在警告行中做了什么。告诉我错误是什么。并告诉我“isTouchInside”的语法。如果你愿意,请完成我的目标。
最佳答案
尝试改变:
if([playButton isTouchInside:[UIImage buttonImageNormal]])
收件人:
if([playButton isTouchInside])
isTouchInside 不接受任何参数
关于ios - 警告 : 'isTouchInside' in If Condition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22344396/
目标: 当触摸内部时,按钮背景图像发生变化 代码: - (void)addMyButton{ // Method for creating button, with background ima
我需要检查 UITextField 是否已收到某种焦点,例如 isTouchInside,然后在执行 if 语句中的代码后,我想将 isTouchInside 设置为 false。这可能吗?或者这里应
我是一名优秀的程序员,十分优秀!