mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-05 05:55:19 +00:00
33 lines
1.1 KiB
Objective-C
33 lines
1.1 KiB
Objective-C
//
|
|
// MWPhoto.h
|
|
// MWPhotoBrowser
|
|
//
|
|
// Created by Michael Waterfall on 17/10/2010.
|
|
// Copyright 2010 d3i. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "MWPhotoProtocol.h"
|
|
|
|
// This class models a photo/image and it's caption
|
|
// If you want to handle photos, caching, decompression
|
|
// yourself then you can simply ensure your custom data model
|
|
// conforms to MWPhotoProtocol
|
|
@interface MWPhoto : NSObject <MWPhoto>
|
|
|
|
@property (nonatomic, strong) NSString *caption;
|
|
@property (nonatomic, readonly) UIImage *image;
|
|
@property (nonatomic, readonly) NSURL *photoURL;
|
|
@property (nonatomic, readonly) NSString *filePath __attribute__((deprecated("Use photoURL"))); // Depreciated
|
|
|
|
+ (MWPhoto *)photoWithImage:(UIImage *)image;
|
|
+ (MWPhoto *)photoWithFilePath:(NSString *)path __attribute__((deprecated("Use photoWithURL: with a file URL"))); // Depreciated
|
|
+ (MWPhoto *)photoWithURL:(NSURL *)url;
|
|
|
|
- (id)initWithImage:(UIImage *)image;
|
|
- (id)initWithURL:(NSURL *)url;
|
|
- (id)initWithFilePath:(NSString *)path __attribute__((deprecated("Use initWithURL: with a file URL"))); // Depreciated
|
|
|
|
@end
|
|
|