gpt4 book ai didi

iphone - Objective C - 创建字符串数组时应用程序崩溃,我疯了吗?

转载 作者:搜寻专家 更新时间:2023-10-30 19:50:14 30 4
gpt4 key购买 nike

如果我尝试使用这个简单的代码:

- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Add the tab bar controller's current view as a subview of the window
[window addSubview:tabBarController.view];

NSString *stringMer = [NSString stringWithFormat:@"OK COOL"] ;
NSString *stringMer2 = [NSString stringWithFormat:@"OK COOL"];

NSArray *truc = [NSArray arrayWithObjects:stringMer,stringMer2];
}

我的应用程序崩溃(“无法读取未知加载命令 0x22”或只是一次常规崩溃)...我的 FooAppDelegate 中的 applicationDidFinishLaunching 是什么,我没有更多代码,这正常吗?

最佳答案

传递给 arrayWithObjects: 方法的参数列表必须以 nil 结尾:

NSArray *truc = [NSArray arrayWithObjects:stringMer,stringMer2, nil];

关于iphone - Objective C - 创建字符串数组时应用程序崩溃,我疯了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1516176/

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