gpt4 book ai didi

iPhone全局变量

转载 作者:行者123 更新时间:2023-12-03 20:24:57 24 4
gpt4 key购买 nike

我想在 appDelegate 类中打开 SQLite 数据库,并在需要该数据库的所有其他类中引用该数据库。我尝试过使用:静态 sqlite3 *数据库 = nil;

但是当我尝试在其他类中使用 appDelegate.database 引用它时,出现编译错误“错误:请求成员‘数据库’不是结构或联合。”您如何引用这些类型的属性?

最佳答案

您应该通过以下通用公式访问存储在应用程序委托(delegate)中的任何变量:

YourAppDelegateName *delegate = (YourAppDelegateName *)[[UIApplication sharedApplication]delegate];
//access specific variables in delegate as follows:
sqlite3 *temp = delegate.database;

关于iPhone全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/790849/

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