Files
yinmeng-ios/xplan-ios/Base/Tool/SDPhotoBrowser/SDPhotoBrowserConfig.h
2021-09-23 19:34:04 +08:00

43 lines
1.3 KiB
C
Executable File
Raw 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 SDPhotoBrowserBackgrounColor [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