1.2.3 增加支持竖直滚动 //support Vertical scroll
你可以使用cocapods导入 you can use it in cocoapods
pod 'MXScrollView'
Carthage 也是一个很好的管理三方框架的工具
- You can install Carthage with Homebrew using the following command:
- 你可以使用Homebrew来安装Carthage
- 安装完homebrew后执行下面命令
$ brew update
$ brew install carthage
在你的工程里创建一个Cartfile
文件 ,并在里面写上下面这句话
github "cwxatlm/MXScrollView"
在终端里执行carthage update
- 安装好后只需要在对应 Target 中的 Build Setting 中的 Framework Search Path 项加入以下路径
$(SRCROOT)/Carthage/Build/iOS
导入头文件
#import <MXScrollView/MXScrollView.h>
想对Carthage了解更多也可以看这里让自己的项目支持Carthage
- Drag the
MXScrollView
folder into your project. 把MXScrollView
文件夹拖入工程 Targets->Build Phases->Copy Bundle Resources
.#imprort "MXScrollView.h"
有两种使用方式 you can use it in two ways
####Objective-C
MXImageScrollView *scroll = [[MXIMageScrollView alloc] initWithFrame:CGRectMake(x, y, scrollWidth, scrollHeight)];
//数组支持传入image或imageUrl support image or imageUrl
scroll.images = @[
[UIImage imageNamed:@"picture_one"],
[UIImage imageNamed:@"picture_two"],
[UIImage imageNamed:@"picture_three"],
@"http://pic31.nipic.com/20130624/8821914_104949466000_2.jpg"
];
scroll.animotionType = kMXTransitionRandom; //支持多特效 support serveral type
scroll.animotionDirection = kMXTransitionDirectionRandom; //支持多方向 support serveral direction
[self.view addSubview:scroll];
[scroll setTapImageHandle:^(NSInteger index) {
//支持点击事件 support tap
}];
//在你不需要的时候释放他 例如 release the timer
- (void)viewWillDisappear:(BOOL)animated {
[scroll invalidateTimer];
}
此时必须写为全局变量
####Objective-C
_scroll = [[MXImageScrollView alloc] initWithFrame:CGRectMake(0,
0,
CGRectGetWidth(self.view.bounds),
MXScrollViewHeight)
rootTableView:_tableView];
_scroll.animotionDirection = kMXTransitionDirectionRandom;
_scroll.animotionType = kMXTransitionRandom;
_scroll.pageControlPosition = kMXPageControlPositionCenter; //更改pageControl显示的位置
_scroll.images = @[
[UIImage imageNamed:@"picture_one"],
[UIImage imageNamed:@"picture_two"],
[UIImage imageNamed:@"picture_three"],
@"http://pic31.nipic.com/20130624/8821914_104949466000_2.jpg"
];
[_scroll setTapImageHandle:^(NSInteger index) {
//tap
}];
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
#warning 重要,想拉伸必须实现此方法 must implement this method
[_scroll stretchingImage];
}
//在你不需要的时候释放他 例如 release the timer
- (void)viewWillDisappear:(BOOL)animated {
[_scroll invalidateTimer];
}
_scroll.delegate = self;
//delegate method 给图片增加副视图
- (UIView *)MXScrollView:(MXScrollView *)mxScrollView viewForImageLeftAccessoryViewAtIndex:(NSInteger)index {
UILabel *leftLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 150, 50, 20)];
leftLabel.backgroundColor = [UIColor clearColor];
leftLabel.textColor = [UIColor whiteColor];
leftLabel.text = [NSString stringWithFormat:@"第%ld页", index];
return leftLabel;
}
//视图拉伸效果
- (UIViewAutoresizing)MXScrollView:(MXScrollView *)mxScrollView leftAccessoryViewAutoresizingMaskAtIndex:(NSInteger)index {
switch (index) {
case 0:
return UIViewAutoresizingFlexibleBottomMargin;
break;
default:
return UIViewAutoresizingFlexibleTopMargin;
break;
}
}