gpt4 book ai didi

iphone - AppDelegate 未被调用

转载 作者:行者123 更新时间:2023-11-28 20:23:06 28 4
gpt4 key购买 nike

我似乎根本无法调用我的 appdelegate。使用断点,它甚至看起来不像是第一个 like 被调用。

这是我的 main.m 中的内容

int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegatename");
[pool release];
return retVal;
}

最佳答案

假设您的 AppDelegateMyAppDelegate , 在 MyAppDelegate.h 中定义和 MyAppDelegate.m .

试试这个:

#import <UIKit/UIKit.h>
#import "MyAppDelegate.h"

int main(int argc, char *argv[])
{
@autoreleasepool
{
return UIApplicationMain(argc, argv, nil, NSStringFromClass([MyAppDelegate class]));
}
}

编辑:这当然是支持 ARC 的应用程序。如果你不使用 ARC,你应该考虑取消它。如果您坚持使用非 ARC 方法,那么只需更换您的线路:

int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegatename");

int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([MyAppDelegate class]));

在这两种情况下,您都必须替换 MyAppDelegate使用您的应用程序委托(delegate)类的真实名称。

编辑2:

根据您的附加命令,您的 main.m 应该如下所示:

#import <UIKit/UIKit.h>
#import "Radio99AppDelegate.h"

int main(int argc, char *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
return UIApplicationMain(argc, argv, nil, NSStringFromClass([Radio99AppDelegate class]));
[pool release];
return retVal;
}

我不确定您使用的是 radio99AppDelegate 还是 Radio99AppDelegate - 最后一个是“标准”。如果这是一个新项目,明智的做法是考虑将其“翻译”为 ARC。内存管理的麻烦大大减少。

关于iphone - AppDelegate 未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15142850/

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