gpt4 book ai didi

iphone - 平移手势导致 subview 崩溃?

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

我使用初始 ViewController 创建一个项目作为单 View 应用程序;将 subViewController 添加到项目中。在两个 View Controller 中都添加了带有平移手势的 UIImageView。
它在 viewController.m 中工作,但是当它被添加到 subViewController 并且 subview 作为 subview 添加到 View Controller 时,程序只是崩溃并显示“Exc_bad_access”。

谁有解决办法?

这是我的代码:

ViewController.m

#import "ViewController.h"
#import "SubViewController.h"

//#define SUB

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
[super viewDidLoad];

#ifdef SUB
SubViewController *sb = [[SubViewController alloc] init];
[self.view addSubview:sb.view];
#else
UIImageView* img_ = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"monkey_1.png"]];
img_.userInteractionEnabled = YES;
UIPanGestureRecognizer *stampPanGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
[stampPanGesture setMinimumNumberOfTouches:1];
[stampPanGesture setMaximumNumberOfTouches:1];
[img_ addGestureRecognizer:stampPanGesture];
img_.center = self.view.center;
[self.view addSubview:img_];
#endif
}


- (void)handlePan:(UIPanGestureRecognizer *)recognizer {
CGPoint translation = [recognizer translationInView:self.view];
recognizer.view.center = CGPointMake(recognizer.view.center.x + translation.x,
recognizer.view.center.y + translation.y);
[recognizer setTranslation:CGPointMake(0, 0) inView:self.view];

}

subview Controller .m

#import "SubViewController.h"
@interface SubViewController ()

@end

@implementation SubViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];


UIImageView* img_ = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"monkey_1.png"]];
img_.userInteractionEnabled = YES;
UIPanGestureRecognizer *stampPanGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
[stampPanGesture setMinimumNumberOfTouches:1];
[stampPanGesture setMaximumNumberOfTouches:1];
[img_ addGestureRecognizer:stampPanGesture];
img_.center = self.view.center;
[self.view addSubview:img_];
}


- (void)handlePan:(UIPanGestureRecognizer *)recognizer {
CGPoint translation = [recognizer translationInView:self.view];
recognizer.view.center = CGPointMake(recognizer.view.center.x + translation.x,
recognizer.view.center.y + translation.y);
[recognizer setTranslation:CGPointMake(0, 0) inView:self.view];

}

最佳答案

假设这是 ARC 代码,问题是您正在创建 subview 的 View Controller ,获取它的 View ,然后让 Controller 本身超出范围并被释放。

直接的解决方法是使 SubViewController *sb 成为主视图 Controller 类的实例变量,这样它就不会超出范围,也不会在您身后被释放。

事实是,虽然这可能会解决您的崩溃问题,但更大的问题是您真的不应该抓取 View Controller 的 View 并将其添加为 subview ,而是对 Controller 本身不执行任何操作。如果你这样做,例如,各种事情可能无法正常工作(例如旋转事件永远不会到达你的 subview ;iOS 需要与 View Controller 通信的任何东西可能不会被你的 subview 的 Controller 接收;我不知道在world didReceiveMemoryWarning 情况会做,等等)。简而言之,Apple 建议不要这样做,并鼓励您保持 View 层次结构和 View Controller 层次结构同步。

因此,如果您要转换到一个新 View ,您真的应该通过 pushViewControllerpresentViewController 来完成。万一这真的是一个 subview (例如,前一个 View 的一部分将保留在屏幕上,而 subview 将只占据屏幕的一部分),您可以使用 View Controller Containment .可以看到WWDC 2011 session 102有关遏制的更多信息。但这对于您正在尝试做的事情来说无疑是矫枉过正。推送/呈现 subview 可能是合乎逻辑的解决方案。

关于iphone - 平移手势导致 subview 崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11372983/

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