iOS cell添加点击时改变字体的颜色及背景

        cell.selectedBackgroundView.backgroundColor = [UIColor whiteColor];//选中后变换,色彩的变换
        cell.textLabel.highlightedTextColor = [UIColor colorWithRed:0/255.0 green:180/255.0 blue:140/255.0 alpha:1];//选中label颜色的变化
        cell.textLabel.textColor = [UIColor whiteColor];

        cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"fenlei-weidaidi"]];
        cell.selectedBackgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"fenlei-daidi"]];//选中后变换,图片的变换
时间: 2024-10-10 17:40:19

iOS cell添加点击时改变字体的颜色及背景的相关文章

【学习笔记01】:hover为DIV添加鼠标悬停时改变颜色的效果

:hover所有主流浏览器都支持(IE6.0以下支持不好,以后再学习用Javascript来实现悬停效果) 这是一个绿色底白色Icon的搜索按钮 CSS部分: #top_search { background-color: #24890D; border: 16px solid #24890D; width: 16px; height: 16px; float: right; } HTML部分: <div id="top_search"> <img src="

IOS - UIView添加点击事件

UIView通过手势(Gesture-UITapGestureRecognizer)添加点击事件, 类似于UIButton的效果. 示例: UIImageView *iKnowIcon = [CYResource loadImageView:@"free-question-once-more-i-know.png"]; iKnowIcon.top = questionIcon.top + scaleWidthWith320(200); iKnowIcon.centerX = self.

点击时改变按钮图标

参考:http://www.mkyong.com/android/android-imagebutton-selector-example/ http://developer.android.com/guide/topics/ui/controls.html 1.在res/drawable文件夹下新建filename.xml文件: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:andr

iOS:UIImageView添加点击事件

UIImageView并不像UIButton那样点击鼠标就可以关联点击事件,也不像Android里有onClickListener,这个时候就需要借助UITapGestureRecognizer类,从类名上就可以看出,这个类就是用于处理tap(单击)事件的. 创建两个UIImageView对象,imageView1和imageView2 [imageView1 setUserInteractionEnabled:YES]; [imageView2 setUserInteractionEnable

ios 修改UItableviewcell点击时的颜色

1 UIView *view_bg = [[UIView alloc]initWithFrame:cell.frame]; 2 view_bg.backgroundColor = UIColorFromRGB(0xFFFFFF, 1); 3 cell.selectedBackgroundView = view_bg;

android 按钮按下时改变字体颜色

1.新建 drawable/button_font_style.xml <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:color="

Android设置沉浸式状态栏时改变状态栏的颜色(只对MIUI V6可用)

Android支持在API 19及以上使用沉浸式状态,但在MIUI V6下如果扩展的颜色比较浅,会导致状态栏的文字无法看清. 在Android4.4设备上支持沉浸式状态栏,只需要添加values-v19/styles.xml 下添加 <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar"> <item name="android:window

ios NSMutableAttributedString 详解 显示不同的字体和颜色的字符串

1 NSMutableAttributedString *mutableString = [[NSMutableAttributedString alloc]initWithString:totalFee]; 2 [mutableString addAttribute:NSFontAttributeName 3 value:[UIFont systemFontOfSize:21.0] 4 range:NSMakeRange(3, totalFee.length - 3)];//设置字体 5 [m

点击按钮改变状态的颜色

p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px "PingFang SC" } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px "PingFang SC"; min-height: 17.0px } p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #e82300 }