1.不能滚动
self.scrollEnabled = NO;
2.正常字体
[UIFont systemFontOfSize:30.0f]
3.加粗字体
[UIFont boldSystemFontOfSize:30.0f]
4.文本框偏移
self.textContainerInset = UIEdgeInsetsMake(TEXTVIEW_TOP_INSET, TEXTVIEW...
分类:
移动开发 时间:
2015-02-11 14:38:49
阅读次数:
161
//增加额外的滚动区域,因为tableview继承scrollview,所以也有这个方法self.tableView.contentInset=UIEdgeInsetsMake(0,0,10,0);
分类:
其他好文 时间:
2015-02-05 07:11:02
阅读次数:
119
第一种:textView.contentInset = UIEdgeInsetsMake(-7.0,0.0,0,0.0);-7是根据自己的需要来调。第二种:[textView setContentOffset:CGPointZero];当然:文字与上下左右的区别都可以调整,只需要调整UIEdgeIn...
分类:
其他好文 时间:
2015-01-05 18:25:08
阅读次数:
101
iOS7 和 iOS8 中tableview cell分割线左对齐的方法不一样,特此为以后需要做笔记。 iOS7 中方法很简单,只需要设置_table.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0); 而iOS8 中方法需要写一段代码:-(void)vi....
分类:
移动开发 时间:
2015-01-04 15:03:37
阅读次数:
163
Cell分割线取消右移状态[tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
分类:
其他好文 时间:
2014-12-27 22:55:09
阅读次数:
154
UIButton上使用UIEdgeInsetsMake让title跟图片对齐默认情况下,不设置的效果,都使居中现实,button为150*150使用以下设置后:[selfsetTitleEdgeInsets:UIEdgeInsetsMake(0.0,-backGroundImag.size.widt...
分类:
其他好文 时间:
2014-12-16 14:51:26
阅读次数:
130
UIButton默认的是:图片-文字水平排列,所以不需要进行调整。
1.文字-图片 水平显示,文字在前,图片再后
[btn setTitleEdgeInsets:UIEdgeInsetsMake(0, -imgArrow.size.width, 0, imgArrow.size.width)];
[btn setImageEdgeInsets:UIEdgeInsetsMake(0, ...
分类:
其他好文 时间:
2014-11-19 15:58:11
阅读次数:
430
假设当前的tableView是_tableView,则可以这样设置 _tableView.contentInset = UIEdgeInsetsMake(0, 0, 100, 0);该属性用于设置当前tableView的偏移量,四个数值分别是:上 左 下 右使用该设置之后,即可以点击到“点击加载更多...
分类:
其他好文 时间:
2014-09-23 12:27:44
阅读次数:
117
重设TableView的 contentInset 属性可解决.?_tableView.contentInset = UIEdgeInsetsMake( -30, 0, 0, 0);
分类:
其他好文 时间:
2014-09-18 12:55:33
阅读次数:
227
//设置内容页的大小//scrollView添加图片如果想让视图滑动,内容页的大小必须比ScrollView得大小要大scrollView.contentSize=CGSizeMake(320*8,568*8);//设置区域相对于frame上下左右在哪显示.//scrollView.contentInset=UIEdgeInsetsMake(100,100,0,0);//设置内容区的偏移量,修..
分类:
其他好文 时间:
2014-09-05 03:23:20
阅读次数:
192