美文网首页
导航栏字体设置 按钮图片显示原图

导航栏字体设置 按钮图片显示原图

作者: 楠Y | 来源:发表于2017-03-17 15:30 被阅读21次

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"注册" style:UIBarButtonItemStylePlain target:self action:@selector(registClick)];

self.navigationItem.rightBarButtonItem.tintColor = kUIColorFromRGB(0x2e2e2e, 1);

[self.navigationItem.rightBarButtonItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont boldSystemFontOfSize:14], NSFontAttributeName, nil] forState:UIControlStateNormal];

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"签到" style:UIBarButtonItemStylePlain target:self action:@selector(SignClick)];

[self.navigationItem.leftBarButtonItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:FontSizeChange(14), NSFontAttributeName, kUIColorFromRGB(0x313131, 1),NSForegroundColorAttributeName,nil] forState:UIControlStateNormal];

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithImage:[[UIImage imageNamed:@"sy_icon_search"]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] style:UIBarButtonItemStyleDone target:self action:@selector(SignClick)];

相关文章

  • 导航栏字体设置 按钮图片显示原图

    self.navigationItem.rightBarButtonItem = [[UIBarButtonIte...

  • 导航栏UINavigationController

    2,设置导航栏的背景颜色 3,设置导航栏按钮字体颜色 4,设置标题样式与颜色(通过导航栏字典的方式) 5,设置返回...

  • 导航栏设置

    设置导航栏某个界面的导航栏透明 (导航按钮显示) 在viewWillAppear里面加两行代码 //设置导航栏背景...

  • 【IDEA】02 IDEA2018常用配置

    目录 测试环境 基础设置1、显示工具栏2、显示侧边工具按钮3、导航栏4、字体及大小5、Eclipse 快捷键模式6...

  • iOS 开发集锦

    1. 设置导航栏返回按钮的文字 2. 设置导航栏返回按钮的图片 3. 图片的拉伸 4. 计算文本frame 5. ...

  • 导航栏的细节和重写Button

    1.//导航栏设置透明(并显示返回按钮) [self.navigationController.navigatio...

  • swift-导航栏修改高度

    导航栏直接可以通过frame来改变高度 设置导航栏半透明 设置导航栏背景图片 设置导航栏阴影图片 设置导航栏前景色...

  • android显示/隐藏底部导航栏

    设置----显示(2)----显示导航栏 底部显示导航栏的效果

  • 导航栏设置

    //导航栏按钮设置 //导航栏背景色全局设置(写在appdelegate里) [[UINavigationBar ...

  • 导航栏渐变隐现

    页面不显示导航栏,上托一定的距离显示导航栏. 设置导航栏存在且透明: 1.设置导航栏的透明: //导航栏透明 ...

网友评论

      本文标题:导航栏字体设置 按钮图片显示原图

      本文链接:https://www.haomeiwen.com/subject/xkbenttx.html