GWLPhotoSelectorHeader.h 693 B

12345678910111213141516171819
  1. //
  2. // GWLPhotoSelectorHeader.h
  3. // GWLPhotoSelector
  4. //
  5. // Created by GaoWanli on 15/7/23.
  6. // Copyright (c) 2015年 GWL. All rights reserved.
  7. //
  8. #ifndef GWLPhotoSelector_GWLPhotoSelectorHeader_h
  9. #define GWLPhotoSelector_GWLPhotoSelectorHeader_h
  10. typedef void(^kGWLPhotoSelector_ArrayBlock)(NSArray *images);
  11. typedef void(^kGWLPhotoSelector_imageBlock)(UIImage *image);
  12. #define kGWLPhotoSelector_Cell_Height 55.0 // cell高度
  13. #define kGWLPhotoSelector_RowPhotoCount 4 // 一行显示的图片个数
  14. #define kGWLPhotoSelector_ErrorMessageText @"未能读取到任何照片"
  15. #define kGWLPhotoSelector_Above_iOS8 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)
  16. #endif