PLWallpaperImageViewController.h 373 B

12345678910111213141516
  1. typedef NS_ENUM(NSUInteger, PLWallpaperMode) {
  2. PLWallpaperModeBoth,
  3. PLWallpaperModeHomeScreen,
  4. PLWallpaperModeLockScreen
  5. };
  6. @interface PLWallpaperImageViewController : UIViewController // PLUIEditImageViewController
  7. - (instancetype)initWithUIImage:(UIImage *)image;
  8. - (void)_savePhoto;
  9. @property BOOL saveWallpaperData;
  10. @property PLWallpaperMode wallpaperMode;
  11. @end