84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
学习是最好的投资!
Swift:
let leftBtn = UIButton(type: UIButtonType.Custom) leftBtn.frame = CGRectMake(0, 0, 65, 35) leftBtn.setImage(UIImage(named: "icon_xm_homepage_downArrow"), forState: UIControlState.Normal) leftBtn.adjustsImageWhenHighlighted = false
// leftBtn.setTitleColor(UIColor.brownColor(), forState: UIControlState.Normal) //设置按钮字体颜色
leftBtn.contentHorizontalAlignment = UIControlContentHorizontalAlignment.Center leftBtn.titleEdgeInsets = UIEdgeInsetsMake(0, -50, 0, 0) leftBtn.imageEdgeInsets = UIEdgeInsetsMake(0, 45, 0, 0) leftBtn.setTitle("天津", forState: UIControlState.Normal) leftBtn.addTarget(self, action: "showLeft", forControlEvents: UIControlEvents.TouchUpInside) self.navigationItem.leftBarButtonItem = UIBarButtonItem.init(customView: leftBtn)
类似的这种小图标,一般有一下几种方式:
使用css sprites设置background-position来设置这种小图片
使用图标库,比较流行的有阿里巴巴矢量图形库或者bootstrap字体图标
可以自己用css写一个caret-down类就行
美团这个应该是使用css sprites,这个相对比较流行,兼容性比较好消耗资源也相对较低
就是一个图片吧
http://s1.meituan.net/www/css/si/base.v21effb81.png图片,挑你自己喜欢的吧~
试试fontAwesome
Swift:
// leftBtn.setTitleColor(UIColor.brownColor(), forState: UIControlState.Normal) //设置按钮字体颜色
类似的这种小图标,一般有一下几种方式:
使用css sprites设置background-position来设置这种小图片
使用图标库,比较流行的有阿里巴巴矢量图形库或者bootstrap字体图标
可以自己用css写一个caret-down类就行
美团这个应该是使用css sprites,这个相对比较流行,兼容性比较好消耗资源也相对较低
就是一个图片吧
http://s1.meituan.net/www/css/si/base.v21effb81.png
图片,挑你自己喜欢的吧~
试试fontAwesome