我有一个ViewController,在这里我添加了一个名为DrawingView的Custom UIView。我想在这个DrawingView中添加动态数量的UITextView,所以我将UITextView子类化为类名为CustomTextView。在ViewController中,我有以下代码将textview添加到DrawingView。
- (void)viewDidLoad
{
[super viewDidLoad];
DrawingView * newDrawingView = [[DrawingView alloc]init];
self.drawingView = newDrawingView ;
}
-(void)setDrawingView:(DrawingView *)_drawingView
{
if (drawingView != _drawingView)
{
[drawingView removeFromSuperview];
drawingView = _drawingView;
drawingView.customDelegate = self;
drawingView.frame = scrollView.bounds;
drawingView.layer.cornerRadius = 8;
drawingView.backgroundColor = [UIColor whiteColor];
drawingView.clipsToBounds = YES;
[self.view addSubview:drawingView];
}
}
在按钮操作上,我在图纸视图中添加CustomTextView。
currentText = [[TextViewContainer alloc]init];
[drawingView currentText];
现在我想将此DrawingView及其子视图(即CustomTextView)归档。 所以在CustomTextView中我添加了NSCoding协议并在其中添加了属性
- (id)initWithCoder:(NSCoder *)aDecoder
{
if ((self = [super initWithCoder:aDecoder]))
{
self.layer.borderWidth = [aDecoder decodeFloatForKey: @"borderWidth"] ;
}
}
- (void)encodeWithCoder:(NSCoder *)aCoder
{
[aCoder encodeFloat:self.layer.borderWidth forKey:@"borderWidth"];
}
上述方法中还有其他自定义属性。 对于存档,我使用以下方法。
- (NSData *)dataForView:(UIView *)view:(NSString *)fileName
{
NSMutableData *data = [NSMutableData data];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver encodeObject:view forKey:fileName];
[archiver finishEncoding];
return (id)data;
}
-(void)saveChangesInFile :(NSString *)fileName
{
NSData *data = [self dataForView:drawingView:fileName];
NSString *docsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *dataPath = [docsDirectory stringByAppendingPathComponent:@"/.hidden"];
if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath])
{
[[NSFileManager defaultManager] createDirectoryAtPath:dataPath withIntermediateDirectories:NO attributes:nil error:nil];
}
NSString *pathes = [dataPath stringByAppendingPathComponent:fileName];
[data writeToFile:pathes atomically:YES];
}
- (UIView *)viewForData:(NSData *)data:(NSString*)key
{
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
UIView *view = [unarchiver decodeObjectForKey:key];
[unarchiver finishDecoding];
return view;
}
-(void)openSavedFileWithName:(NSString*)fileName{
NSString *docsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *dataPath = [docsDirectory stringByAppendingPathComponent:@"/.hidden"];
NSString *filepath = [dataPath stringByAppendingFormat:@"/%@",fileName];
NSData *data = [NSData dataWithContentsOfFile:filepath];
if (data)
{
UIView *newDrawView = [self viewForData:data:fileName];
}
NSLog(@"neew :%@",newDrawView.subviews);
self.drawingView = (DrawingView *)newDrawView ;
NSLog(@"self.drawingView :%@",self.drawingView.subviews);
}
但我将子视图数组设为nil。请有人帮帮我。
答案 0 :(得分:2)
认为您正在尝试存档视图。
[archiver encodeObject:view forKey:fileName];
我认为这是错误的。您不能归档任何UI组件,但只能归档模型。 例如,您可以将模型(包括特定视图的大小,颜色和背景图像)保存到数据库,并且无法将视图本身保存到数据库。同样,对于归档,您需要归档其数据(即数组,图像等),而不是归档UI组件。
有关详细信息,请查看the NSKeyedArchiver ClassReference。 另外,请查看the link详细说明。 感谢。