Files
real-e-party-iOS/YuMi/Tools/SDPhotoBrowser/SDPhotoBrowserConfig.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

43 lines
1.3 KiB
C
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// SDPhotoBrowserConfig.h
// SDPhotoBrowser
//
// Created by aier on 15-2-9.
// Copyright (c) 2015年 GSD. All rights reserved.
//
typedef enum {
SDWaitingViewModeLoopDiagram, // 环形
SDWaitingViewModePieDiagram // 饼型
} SDWaitingViewMode;
// 图片保存成功提示文字
#define SDPhotoBrowserSaveImageSuccessText @" ^_^ 保存成功 ";
// 图片保存失败提示文字
#define SDPhotoBrowserSaveImageFailText @" >_< 保存失敗 ";
// browser背景颜色
#define SDPhotoBrowserBackgroundColor [UIColor colorWithRed:0 green:0 blue:0 alpha:0.95]
// browser中图片间的margin
#define SDPhotoBrowserImageViewMargin 10
// browser中显示图片动画时长
#define SDPhotoBrowserShowImageAnimationDuration 0.4f
// browser中显示图片动画时长
#define SDPhotoBrowserHideImageAnimationDuration 0.4f
// 图片下载进度指示进度显示样式SDWaitingViewModeLoopDiagram 环形SDWaitingViewModePieDiagram 饼型)
#define SDWaitingViewProgressMode SDWaitingViewModeLoopDiagram
// 图片下载进度指示器背景色
#define SDWaitingViewBackgroundColor [UIColor colorWithRed:0 green:0 blue:0 alpha:0.7]
// 图片下载进度指示器内部控件间的间距
#define SDWaitingViewItemMargin 10