[問題] 關於Button highLight的顏色

作者: larry122 (larry122)   2016-06-14 21:32:21
各位好:
先附上DEMO
https://drive.google.com/file/d/0Bx3rZLw6NauYZWFTQ1ZBaFNZQVE/view?usp=sharing
現在遇到一個問題是我製作了一個TABLEVIEW 然後HIGHTLIGHT的時候
會將背景轉紅色,並也新增BUTTON想要達成同樣的效果,在stackoverflow
網站找到下方這個方法
- (UIImage *)imageWithColor:(UIColor *)color {
CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
是可以轉變顏色,兩者同樣是red但Button的效果卻灰掉了,導致變成暗紅,自己嘗試了
很久仍然一樣,不確定BUTTON的HIGHTLIGH是如何運作的,想問一下有人遇過類似問題嗎?
不好意思 ,麻煩了
作者: BS0824 (Bright_Sky)   2016-06-15 09:45:00
Button type改成custom
作者: larry122 (larry122)   2016-06-15 12:35:00
這樣就好嗎 下午來用看看可以了欸 用超久 原來在這改再次感謝1樓 花了不少時間嘗試把HIGHTLIAGHT關閉
作者: BS0824 (Bright_Sky)   2016-06-16 08:57:00
舉手之勞 :)

Links booklink

Contact Us: admin [ a t ] ucptt.com