1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // NIMPageView.h
- // NIMKit
- //
- // Created by chris.
- // Copyright (c) 2015年 NetEase. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class NIMPageView;
- @protocol NIMPageViewDataSource <NSObject>
- - (NSInteger)numberOfPages: (NIMPageView *)pageView;
- - (UIView *)pageView: (NIMPageView *)pageView viewInPage: (NSInteger)index;
- @end
- @protocol NIMPageViewDelegate <NSObject>
- @optional
- - (void)pageViewScrollEnd: (NIMPageView *)pageView
- currentIndex: (NSInteger)index
- totolPages: (NSInteger)pages;
- - (void)pageViewDidScroll: (NIMPageView *)pageView;
- - (BOOL)needScrollAnimation;
- @end
- @interface NIMPageView : UIView<UIScrollViewDelegate>
- @property (nonatomic,strong) UIScrollView *scrollView;
- @property (nonatomic,weak) id<NIMPageViewDataSource> dataSource;
- @property (nonatomic,weak) id<NIMPageViewDelegate> pageViewDelegate;
- - (void)scrollToPage: (NSInteger)pages;
- - (void)reloadData;
- - (UIView *)viewAtIndex: (NSInteger)index;
- - (NSInteger)currentPage;
- //旋转相关方法,这两个方法必须配对调用,否则会有问题
- - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
- duration:(NSTimeInterval)duration;
- - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
- duration:(NSTimeInterval)duration;
- @end
|