gpt4 book ai didi

ios - 发布 Var 后更改类别时主/详细应用程序崩溃

转载 作者:行者123 更新时间:2023-11-29 13:47:47 25 4
gpt4 key购买 nike

我正在努力弄清楚为什么我的应用程序在我发布合成属性时崩溃。我的应用程序启动,当我点击一行时,它会将我带到 DetailViewController,然后当我返回并再次点击一行时,应用程序崩溃并显示 EXC_BAD_ACCESS。

DetailViewController.h:

#import <UIKit/UIKit.h>

@interface DetailViewController : UIViewController {

IBOutlet UILabel *clipboardLabel;

}

@property (nonatomic, retain) IBOutlet UILabel *clipboardLabel;

@end

DetailViewController.m

#import "DetailViewController.h"

@implementation DetailViewController

@synthesize clipboardLabel;

- (void)viewDidLoad
{
// Do any additional setup after loading the view from its nib.
clipboardLabel.text = @"Tap an image to copy";
[super viewDidLoad];
}

- (void)dealloc
{
[clipboardLabel dealloc];
[super dealloc];
}

@end

最佳答案

dealloc 方法的 clipboardLabel 上调用 release 而不是 dealloc

应该是:

- (void)dealloc
{
[clipboardLabel release];
[super dealloc];
}

一般规则:应该永远在另一个对象上调用dealloc

关于ios - 发布 Var 后更改类别时主/详细应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6549897/

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