UIScrollView: 1, CGPoint contentOffset 内容偏移量 2,CGSize contentSize 可滑动范围 3, UIEdgeInsets contentInset 内边距设置 4, delegate 代理 5, BOOL directionalLockEnabl ...
分类:
其他好文 时间:
2017-06-28 14:22:35
阅读次数:
154
今天。特别郁闷。自己定义了一个UIScrollView,然后在它里面加入控件,如UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0,0,100,100)]; 按理来说,这个button应该在scrollView的顶部。可是却 ...
分类:
其他好文 时间:
2017-06-24 10:02:05
阅读次数:
166
本来仅仅是打算介绍一下addChildViewController这种方法的,正好今天朋友去换工作面试问到网易新闻标签栏效果的实现,就结合它,用个小Demo实例介绍一下:(详细解释都写在了Demo里面的凝视) // // HMTMainViewController.m // UIScrollView ...
分类:
移动开发 时间:
2017-06-17 17:17:39
阅读次数:
386
import UIKit class ViewController: UIViewController ,UIScrollViewDelegate{ override func viewDidLoad() { super.viewDidLoad() let scrollView = UIScroll ...
分类:
编程语言 时间:
2017-06-12 11:46:49
阅读次数:
268
- (void)scrollViewDidScroll:(UIScrollView *)scrollView { NSLog(@"開始滚动"); int currentPostion = scrollView.contentOffset.y; if (currentPostion - _lastPo ...
分类:
其他好文 时间:
2017-06-07 18:41:39
阅读次数:
245
//scrollView滚动时,就调用该方法。任何offset值改变都调用该方法。即滚动过程中,调用多次 - (void)scrollViewDidScroll:(UIScrollView *)scrollView { NSLog(@"scrollViewDidScroll"); CGPoint p ...
分类:
移动开发 时间:
2017-05-31 17:35:25
阅读次数:
240
案例:(在模拟器中按住option键,点击鼠标就会出现缩放的手势) (1)在ViewController.m中: ——缩放东西是UIScrollView除了滚动之外的还有一个功能,所以须要缩放的东西应该先放在UIScrollView里。比方此处的imageView; ——而我们在缩放时候,scrol ...
分类:
移动开发 时间:
2017-05-27 10:53:36
阅读次数:
196
[mScrollView setContentOffset:CGPointMake(0,200) animated:YES]; [mScrollView setContentOffset:CGPointMake(0,200) animated:YES]; ...
分类:
移动开发 时间:
2017-05-27 10:41:17
阅读次数:
267
利用UIScrollView的滚动效果来实现,先上图: 实现过程是:在viewController里先增加UIScrollView和UIPageControl: -(void) loadView { [super loadView]; UIScrollView *scrollView = [[UIS ...
分类:
其他好文 时间:
2017-05-24 20:17:41
阅读次数:
135
http://jingyan.baidu.com/article/4dc40848a341dfc8d846f152.html 听语音 | 浏览:4606 | 更新:2015-02-10 12:14 | 标签:制作 http://jingyan.baidu.com/article/4dc40848a3 ...
分类:
移动开发 时间:
2017-05-18 15:40:22
阅读次数:
304