Swift/OC设置tabbar

前端之家收集整理的这篇文章主要介绍了Swift/OC设置tabbar前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Swift->Demo演示点此下载


OC ->Demo演示点此下载



使用方法请见Demo



// 字体颜色
dict = NSDictionary(
object: UIColor.init(red: 0.835,green: 0.090,blue: 0.125,alpha: 1.000),forKey: NSForegroundColorAttributeName

);


// 字体大小
var dict = NSDictionary(object: UIFont.systemFontOfSize(12),forKey:NSFontAttributeName
);


// 选中状态下 文字颜色
childCtrl.tabBarItem.setTitleTextAttributes(字典 as? [String : AnyObject],forState: .Selected);



也可以在tabbarController这里面设置

// 视图将要显示
override func viewWillAppear(animated: Bool) {

super.viewWillAppear(animated);

for item in tabBar.items! {

// 设置字体大小 let dict = NSDictionary(object: UIFont.systemFontOfSize(22),forKey:NSFontAttributeName ); item.setTitleTextAttributes(dict as? [String : AnyObject],forState: .Normal); } }

原文链接:https://www.f2er.com/swift/324015.html

猜你在找的Swift相关文章