-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTweak.h
33 lines (27 loc) · 1.1 KB
/
Tweak.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@interface CKMessageComposition : NSObject
@property(copy, nonatomic) NSString *subject;
@property(retain, nonatomic) NSDictionary *resources;
@property(copy, nonatomic) NSString *markupString;
+ (CKMessageComposition *)newComposition;
+ (CKMessageComposition *)newCompositionForText:(NSString *)arg1; // you can use this method if it's an SMS, i.e. text only short message :)
@end
@interface CKMediaObjectManager : NSObject
+ (CKMediaObjectManager *)sharedInstance;
- (id)newMediaObjectForData:(NSData *)arg1 mimeType:(NSString *)arg2 exportedFilename:(id)arg3;
@end
@interface IMFileManager : NSFileManager
+ (IMFileManager *)defaultHFSFileManager;
- (NSString *)MIMETypeOfPath:(NSString *)arg1;
@end
@interface CKMessagePart : NSObject
@end
@class CKMediaObject;
@interface CKMediaObjectMessagePart : CKMessagePart
- (CKMediaObjectMessagePart *)initWithMediaObject:(CKMediaObject *)arg1;
@end
@interface CKContentEntryBridge : NSObject
+ (CKContentEntryBridge *)newContentEntryBridge;
@end
@interface CKWebviewBasedContentEntryBridge : CKContentEntryBridge
- (NSString *)_htmlForMessagePart:(CKMessagePart *)arg1;
@end