• This repository has been archived on 18/Feb/2019
  • Stars
    star
    144
  • Rank 255,590 (Top 6 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 6 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

📝[废弃]一个集成简单交互效果不错的图片浏览器, 内存以及CPU占用低,顺滑自然

[废弃]MFPictureBrowser

类似于<即刻>应用的图片浏览器效果(支持PNG, JPG, GIF, WebP).

DUB Total-downloads Version Platform Language

效果图

集成方式

  • cocoapod
pod 'MFPictureBrowser'

使用方式

  • 导入
#import <MFPictureBrowser.h>
  • 初始化并设置代理
MFPictureBrowser *brower = [[MFPictureBrowser alloc] init];
brower.delegate = self;
  • 展示
//展示图片
[brower showImageFromView:(fromView) picturesCount:(picturesCount) currentPictureIndex:(currentPictureIndex)];

实现代理方法

- (FLAnimatedImageView *)pictureView:(MFPictureBrowser *)pictureBrowser imageViewAtIndex:(NSInteger)index {
    ...
}

- (id<MFPictureModelProtocol>)pictureBrowser:(MFPictureBrowser *)pictureBrowser pictureModelAtIndex:(NSInteger)index {
    ...
}

具体使用方式参见 Demo

感谢

ESPictureBrowser

YYWebImage