#define textFont [UIFont systemFontOfSize:16] #import "ViewController.h" @interface ViewController ()<UITextViewDelegate> @property (nonatomic, weak) ...
分类:
微信 时间:
2017-02-27 13:31:21
阅读次数:
405
在UITextField中自带placeholder属性,可以用于提示输入框信息。但是UITextView并不具备此功能介绍一种方法来实现初始化UITextView: //首先定义UITextView UITextView *textView = [[UITextView alloc] init]; ...
分类:
其他好文 时间:
2017-02-12 21:25:59
阅读次数:
155
1、NSFontAttributeName : 字体 NSString *const NSFontAttributeName;(字体) 该属性所对应的值是一个 UIFont 对象。该属性用于改变一段文本的字体。如果不指定该属性,则默认为12-point Helvetica(Neue)。 2、NSPa ...
分类:
移动开发 时间:
2017-02-05 15:18:33
阅读次数:
226
1.自己计算Cell的高度返回: 1>model中计算: 2.自定义CellFrame类存储Cell高度: 2.使用第三方Masonry自使用行高: 很方便,要求自己把约束要设置完全!!! ...
分类:
其他好文 时间:
2016-12-28 18:41:51
阅读次数:
152
btn.frame = CGRectMake(x, y, width, height); [btn setTitle: @"search" forState: UIControlStateNormal]; //设置按钮上的自体的大小 //[btn setFont: [UIFont systemFon ...
分类:
其他好文 时间:
2016-12-27 13:27:37
阅读次数:
213
1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UICol ...
分类:
其他好文 时间:
2016-12-21 11:54:37
阅读次数:
175
一、点击扩散效果 这个效果没什么难度,主要是加深对核心动画的理解和使用,但是还是有几个想说明的地方。先看一下效果,具体内容代码里有注释。 二、图片轮播 图片轮播已经老生常谈了,我在一个APP上看到这个效果还不错就试着写了下。代码没什么,主要是逻辑上的处理。 三、毛毛虫效果 这个也是在那个APP上看到 ...
分类:
其他好文 时间:
2016-12-20 16:11:56
阅读次数:
273
// 打印系统中所有字体的类型名字 NSArray *familyNames = [UIFont familyNames]; for(NSString *familyName in familyNames ){ printf("Family: %s \n", [familyName UTF8Stri ...
分类:
移动开发 时间:
2016-12-14 13:36:09
阅读次数:
295
btn.frame = CGRectMake(x, y, width, height); [btn setTitle: @"search" forState: UIControlStateNormal]; //设置按钮上的自体的大小 //[btn setFont: [UIFont systemFon ...
分类:
其他好文 时间:
2016-11-22 17:48:48
阅读次数:
172
1. 声明一下下 #import <CoreBluetooth/CoreBluetooth.h> 2 初始化在viewdidload 中 self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:dispa ...
分类:
移动开发 时间:
2016-11-21 12:12:15
阅读次数:
205