16 lines
300 B
Objective-C
16 lines
300 B
Objective-C
//
|
|
// ZZDocument.m
|
|
// ProductApp
|
|
//
|
|
// Created by 工作 on 2024/11/1.
|
|
//
|
|
|
|
#import "ZZDocument.h"
|
|
|
|
@implementation ZZDocument
|
|
- (BOOL)loadFromContents:(id)contents ofType:(NSString *)typeName error:(NSError * _Nullable __autoreleasing *)outError {
|
|
self.data = contents;
|
|
return YES;
|
|
}
|
|
@end
|