博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在iPhone应用的导航栏添加自定义标题
阅读量:6250 次
发布时间:2019-06-22

本文共 315 字,大约阅读时间需要 1 分钟。

在开发中经常会用到导航器,在导航器中添加标题很简单,如下:  

phase Day 1";  
  
UILabel *titleText = [[UILabel alloc] initWithFrame: CGRectMake(0, 0, 200, 20)];  
    titleText.backgroundColor = [UIColor clearColor];  
    [titleText setFont:[UIFont systemFontOfSize:15.0]];  
    [titleText setText:@"Elimination phase Day 1"];  
    self.navigationItem.titleView=titleText;  

转载地址:http://chusa.baihongyu.com/

你可能感兴趣的文章
Python_基础_(模块,time,random,os,sys,json,shelve,xml,序列化反序列化)
查看>>
Redis几个认识误区
查看>>
异常:Project configuration is not up-to-date with pom.xml解决方案
查看>>
HDU2647 拓扑排序
查看>>
ThinkPHP/---微信支付PC流程
查看>>
JavaScript 05
查看>>
python 多线程编程之threading模块(Thread类)创建线程的三种方法
查看>>
实验三
查看>>
水仙花数
查看>>
常用正则表达式
查看>>
P3308 [SDOI2014]LIS(最小割+退流)
查看>>
Intellij IDEA 快捷键整理
查看>>
C语言作业--数据类型
查看>>
[POI2012]STU-Well
查看>>
压位高精
查看>>
655. Print Binary Tree
查看>>
jsp 中对jar 包的引用
查看>>
python操作mysql数据库
查看>>
Yii: gii 403 Error you are not allowed to access this page
查看>>
Android SVG矢量资源的使用方法
查看>>