gpt4 book ai didi

ios - 在 iOS6 中使用 restorationIdentifier 保存 UIImageView 的状态

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:43:48 25 4
gpt4 key购买 nike

我在文档中读到,@property(nonatomic, copy) NSString *restorationIdentifier 能够保留 UIImageView 属性的状态,例如位置、角度、等我尝试添加方法

-(BOOL)application:(UIApplication *)application shouldRestoreApplicationState:(NSCoder *)coder
{
return YES;
}

-(BOOL)application:(UIApplication *)application shouldSaveApplicationState:(NSCoder *)coder
{
return YES;
}

到 View Controller 。我已经在 IB 中将 View Controller 的恢复 ID 设置为 @"myFirstViewController

我还在 View Controller 中添加了以下方法。

-(void)encodeRestorableStateWithCoder:(NSCoder *)coder
{
[coder encodeObject:_myImageView.image forKey:@"UnsavedImage"];
[super decodeRestorableStateWithCoder:coder];
}

-(void)decodeRestorableStateWithCoder:(NSCoder *)coder
{
_myImageView.image = [coder decodeObjectForKey:@"UnsavedImage"];
[super encodeRestorableStateWithCoder:coder];
}

我应该在 appDelegate 或 View Controller 中添加前两个方法吗?UIImageView 没有得到保留。这里有什么问题?

最佳答案

为了使状态保存和恢复工作,始终需要两个步骤:

  • 应用代表必须选择加入
  • 每个 View Controller 或 View 保留/恢复必须分配有恢复标识符。

您还应该为需要保存和恢复状态的 View 和 View Controller 实现 encodeRestorableStateWithCoder:decodeRestorableStateWithCoder:

将以下方法添加到 UIImageView 的 View Controller 。

-(void)encodeRestorableStateWithCoder:(NSCoder *)coder
{
[coder encodeObject:UIImagePNGRepresentation(_imageView.image)
forKey:@"YourImageKey"];

[super decodeRestorableStateWithCoder:coder];
}

-(void)decodeRestorableStateWithCoder:(NSCoder *)coder
{
_imageView.image = [UIImage imageWithData:[coder decodeObjectForKey:@"YourImageKey"]];

[super encodeRestorableStateWithCoder:coder];
}

状态保存和恢复是一项可选功能,因此您需要通过实现两种方法让应用程序委托(delegate)选择加入:

- (BOOL)application:(UIApplication *)application shouldSaveApplicationState:(NSCoder *)coder
{
return YES;
}

- (BOOL)application:(UIApplication *)application shouldRestoreApplicationState:(NSCoder *)coder
{
return YES;
}

关于状态保存的有用文章: http://useyourloaf.com/blog/2013/05/21/state-preservation-and-restoration.html

关于ios - 在 iOS6 中使用 restorationIdentifier 保存 UIImageView 的状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15872738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com