- 6
- 0
- 约8.55千字
- 约 14页
- 2018-01-02 发布于河南
- 举报
IOS iPhone开发 UI整理总结
广播
//发送者
//发送值改变的广播(通知)
[[NSNotificationCenter defaultCenter] postNotificationName:@dataChange object:nil];
//接受者
//接收广播
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadView) name:@dataChange object:nil];
- (void)dealloc{
[[NSNotificationCenter defaultCenter] removeObserver:self name:@dataChange object:nil];
[super dealloc];
}
push-pop View
[self.navigationController pushViewController:sub animated:YES];
[self.navigationController popViewControllerAnimated:YES];
//显示导航条
[self.navigationController setNavigationBarHidden:NO animated:YES];
模态化弹出
[self.navigationController presentModalViewController: Controller animated:YES];
[Controller dismissViewControllerAnimated:YES completion:^{
}];
动画
[UIView animateWithDuration:0.1 animations:^{
//通过transform让imageView转动一周
_refreshView.transform = CGAffineTransformRotate(_refreshView.transform, 1.0);
}];
heightForRowAtIndexPath
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
//根据数据源中的数据,以及cell中各个控件的frame的设定,重新计算行高
ChatModle *modle=[_dataArray objectAtIndex:indexPath.row];
CGSize size=[modle.chatText sizeWithFont:[UIFont systemFontOfSize:18]constrainedToSize:CGSizeMake(260, 999) lineBreakMode:NSLineBreakByCharWrapping];
return size.height+40;
}
UILabel 字体
加粗;
[UILabel setFont:[UIFont fontWithName:@Helvetica-Bold size:20]];
加粗并且倾斜
[UILabel setFont:[UIFont fontWithName:@Helvetica-BoldOblique size:20]];
UILabel使用自定义字体
博客分类: Phone / IOS / Objective-C
?
xcode 4
?
下载自定义字体(例如:Blazed.ttf)后,拖入项目当中。
?
在 Supporting Files 中找到 (项目名称)-info.plist, 添加 Fonts provided by application 项, 打开对应的数组,可以设置多个字体,在Item0中 输入Blazed.ttf。
?
在程序中通过字体family name,找出字体名字。然后使用
?
C代码 ?
label.font?=?[UIFont?fontwithname:@Blazed?size:42];??
??或者
?
C代码 ?
UIFont?*tfont?=?[UIFont?fontWithName:@Blazed?size:42];??
label.font?=?tfont;??
??
例外还有其他设置:
?
C代码 ?
UILabel?*label?=?[[UILabel?alloc]initWithFrame:CGRectMake(50.0,?20.0,?200.0,?5
您可能关注的文档
最近下载
- 2021年上海市嘉定区中考英语二模试卷含解析.pdf VIP
- 2025年广东省普通高中学业水平选择性考试生物(详解版).docx VIP
- 宁德市2025-2026学年(上期)高二期末考试数学试卷(含答案).pdf
- 鄂尔多斯职业学院单招《职业适应性测试》真题(达标题)附答案详解.docx VIP
- 2025年四川中科《浅谈肥胖治疗新进展》继续教育习题答案.docx VIP
- 小学三年级数学测量单元试题.docx VIP
- 三菱变频器使用手册-FR-E540 中文版.pdf VIP
- 小升初语文练习题6年级语文.pdf VIP
- 8.1 0—3岁婴幼儿心理发展评价(课件)《0-3岁婴幼儿心理发展与教育》(华东师范大学出版社).pptx VIP
- 《测量》习题3.doc VIP
原创力文档

文档评论(0)