12345678910111213141516 |
- typedef NS_ENUM(NSUInteger, PLWallpaperMode) {
- PLWallpaperModeBoth,
- PLWallpaperModeHomeScreen,
- PLWallpaperModeLockScreen
- };
- @interface PLWallpaperImageViewController : UIViewController // PLUIEditImageViewController
- - (instancetype)initWithUIImage:(UIImage *)image;
- - (void)_savePhoto;
- @property BOOL saveWallpaperData;
- @property PLWallpaperMode wallpaperMode;
- @end
|