1

我正在创建一个测试应用程序,它将添加多个带有图像的 UIImageViews。用户将能够移动和旋转这些图像。我有 UIGestureRecognizers 并正在工作,但我还需要跟踪用户在屏幕上留下图像的位置。这样,如果他们关闭应用程序并返回,他们放置图像的位置就会被记住。

我知道我应该为此使用 NSUserDefaults,但我的问题是如何跟踪可能大量 UIImageView 在屏幕上的位置。我假设我需要以某种方式获取它们的 x/y 坐标并将其存储在 NSUserDefaults 中。

有人对如何做到这一点有建议吗?

-布赖恩

4

1 回答 1

5

UIView 有一个属性子视图。我建议遍历数组。这是一个例子:

NSMutableDictionary *coordinates = [[NSMutableDictionary alloc] init];
for (id subview in view.subviews) {
    if ([subview isKindOfClass:[UIImageView class]]) {
        [coordinates setObject:[NSValue valueWithPoint:subview.frame.origin] forKey:imageViewIdentifier];
    }
}
//store coordinates in NSUserDefaults
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setObject:coordinates forKey:@"ImageViewCoordinates"];
[userDefaults synchronize];

您可以使用一些标识符来节省内存,而不是将整个图像视图存储为坐标字典中的键。该对象是一个 NSValue,因此要从中获取 x/y 值,您可以使用[[value pointValue] x][[value pointValue] y]

这是一个读回数据(并将视图恢复正常)的示例。

NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSDictionary *coordinates = [userDefaults dictionaryForKey:@"ImageViewCoordinates"];
//Key can be any type you want
for (NSString *key in coordinates.allKeys) {
    UIImageView *imageView;
    //Set UIImageView properties based on the identifier
    imageView.frame.origin = [coordinates objectForKey:key];
    [self.view addSubview:imageView];
    //Add gesture recognizers, and whatever else you want
}
于 2012-05-27T16:25:14.023 回答