123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import "WFCCMessageContent.h"
- #import <CoreLocation/CoreLocation.h>
- #import <UIKit/UIKit.h>
- @interface WFCCLocationMessageContent : WFCCMessageContent
- + (instancetype)contentWith:(CLLocationCoordinate2D) coordinate
- title:(NSString *)title
- thumbnail:(UIImage *)thumbnail;
- @property (nonatomic, assign)CLLocationCoordinate2D coordinate;
- @property (nonatomic, strong)NSString *title;
- @property (nonatomic, strong)UIImage *thumbnail;
- @end
|