XYAddImageView 2.0.0

XYAddImageView 2.0.0

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布上次发布2016年1月

Rick He 维护。



  • 何米颖

添加图片的一个UI控件

github

使用方法

基本使用
    XYAddImageView *img = [[XYAddImageView alloc] initWithFrame:CGRectMake(0, 100, kScreenWidth, 100) NumberOfImageForOneLine:4];
    [self.view addSubview:img];
若添加图片张数无限制,可设置代理监测添加图片事件
    img.delegate = self;

必须响应以下事件

    - (void)XYAddImageViewFrameDidIncrease:(XYAddImageView *)imageView;
    - (void)XYAddImageViewFrameDidDecrease:(XYAddImageView *)imageView;