• Stars
    star
    174
  • Rank 217,791 (Top 5 %)
  • Language
    Objective-C
  • Created about 9 years ago
  • Updated over 8 years ago

Reviews

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

Repository Details

CustomActionSheet

HySideScrollingImagePicker

Platform Language License

image

Example【示例】

Pop Up Photos Selection Controls【弹出照片选择控件】

    [HySideScrollingImagePicker ClassMethodsCancelStr:@"取消" otherButtonTitles:@[@"拍摄",@"从相册选择",@"更多"] isMultipleSelection:false SeletedImages:^(NSArray *GetImages, NSInteger Buttonindex) {
        //do what you want...
    }];

Pop Up Custom Action Sheet【弹出底部选择框】

    HyActionSheet *action = [[HyActionSheet alloc] initWithCancelStr:@"取消" otherButtonTitles:@[@"退出登录",@"test",@"ABC",@"BCD"] AttachTitle:@"退出登录后不会删除任何历史数据, 下次登录依然可以使用本账号"];
    //改变其中一条title颜色
    [action ChangeTitleColor:[UIColor redColor] AndIndex:1];
    //Block回调
    [action ButtonIndex:^(NSInteger Buttonindex) {
        //do what you want...
    }];

Fix Bugs

  • 已修复Block不存在导致crash
  • 已修复CollectionView多选重用,导致得到的数据混乱bug
  • 修复BUG:获取系统图片,图片过多的时候会崩溃.
  • 针对屏幕旋转做了支持 - Made support for screen rotation 感谢@mythodeia指出
  • 修复iOS 9预览照片不显示bug

期待

  • 如果在使用过程中遇到BUG,希望你能Issues我
  • 将模仿进行到底,让更多新手开发者了解比较酷的界面实现思路...
  • 如果觉得好用请Star!
  • 谢谢!