zoukankan      html  css  js  c++  java
  • 修改NavigationBarItem的字体大小和颜色的使用方法

    //创建一个左边按钮
        UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:@"<" style:UIBarButtonItemStylePlain target:self action:@selector(clickLeftButton)];
        //    leftButton.
        
        [leftButton setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                            [UIFont fontWithName:@"Helvetica-Bold" size:17.0], NSFontAttributeName,
                                            [UIColor greenColor], NSForegroundColorAttributeName,
                                            nil]
                                  forState:UIControlStateNormal];
        //创建一个右边按钮
        UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"登陆" style:UIBarButtonItemStyleDone target:self action:@selector(clickRightButton)];
        [rightButton setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                             [UIFont fontWithName:@"Helvetica-Bold" size:17.0], NSFontAttributeName,
                                             [UIColor greenColor], NSForegroundColorAttributeName,
                                             nil]
                                   forState:UIControlStateNormal];
  • 相关阅读:
    PHP Context学习系列《十》
    学习php记录《九》
    学习php记录《八》
    php学习记录《七》
    换到新工作后
    学习php记录《六》
    学习php记录《五》
    学习php记录《四》
    学习php记录《三》
    html基础
  • 原文地址:https://www.cnblogs.com/jukaiit/p/5653104.html
Copyright © 2011-2022 走看看