gpt4 book ai didi

ios - 代码在 AppDelegate 中工作,但不在任何其他类中工作

转载 作者:行者123 更新时间:2023-11-30 11:55:52 25 4
gpt4 key购买 nike

我正在使用 swift 的 socket.io 客户端。当我声明并连接套接字并在 AppDelegate 中使用其命令时,一切正常。但是,一旦我将这些东西从 AppDelegate 移动到另一个类(使套接字成为全局变量)并从 AppDelegate 调用该类的函数,套接字错误就开始出现(错误的描述与本主题确实无关。我有一个有关 Socket.io issues 中的讨论)我想问的是这种情况发生吗?我用过

deinit {
NSLog("CCNOTIFICATIONS RESOURCES GOT DE INITIALIZED")
}

在该文件中,但这永远不会被调用。

据我所知,AppDelegate 是一个委托(delegate),当应用程序的状态发生变化(即启动或进入后台/前台)时,它会被调用。而且在 AppDelegate 中困惑大量代码并不是一个好习惯。显然两个文件的范围没有区别,那么为什么会发生这种情况呢?

如果我的理解有误,请指正。这个错误问题该如何解决呢?或者至少我可以尝试其他什么方法来解决这个问题?任何帮助,将不胜感激。

更新:这是代码:当我在AppDelegate中编写它时:

class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?
public static var socket = SocketIOClient(socketURL: URL(string: “URL”)!, config: [.log(true), .compress])

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

AppDelegate.socket.connect()
AppDelegate.socket.on("connect") {data, ack in
print("Connected successfully")
}

AppDelegate.socket.on("book-adventure-provider") {data, ack in
print("BOOKING CAME")
print(data)
}
return true
}

当我将其写入其他文件时:

CC通知:

public class CCNotifications : INotifications
{
public var socket = SocketIOClient(socketURL: URL(string: “URL”)!, config: [.log(true), .compress, .forcePolling(true), .forceNew(true)])


public func sendBookingRequest(adventureId: String, success: @escaping () -> Void, error: @escaping CErrorCallback) {
if (ConnectionStatus.isConnected() == false)
{
let errorObj = CError()
errorObj.message = "No internet connection"
errorObj.code = ClientConstants.connectionErrorCode
error(errorObj)
}
else
{
let jwtToken = KeychainWrapper.standard.string(forKey: "jwtToken")
let data = ["adventure_id": adventureId, "jwt": jwtToken]
socket.emit("book-adventure", data)

socket.on("book-adventure-seeker") { data, ack in
print(data)
}
}
}
}

Cuufy客户端:

public class CuufyClient : IClient {

public var notifications: INotifications? = nil

public static var Notifications: INotifications? { get { return CuufyClient.client?.notifications}}


//region Actions
public static func Initialize(completion: ((_ error: CError?) -> Void)?) {

CuufyClient.client?.notifications = CCNotifications ()

completion? (nil)
}
//endregion
}

最后将其称为:

CuufyClient.Notifications?.funcWhichIWannaCall.

注意:两种方法都有效。但是,当我在 CCNotifications 中编写代码并运行它时,有时它会开始给出套接字错误: session id 未知,然后一次又一次地自行连接。

更新2:日志中套接字错误之前的一行我观察到此错误:

2017-12-15 15:45:34.133480+0500 TestTarget[5332:230404] TIC Read Status [1:0x60000017f440]: 1:57

搜索此错误后,我发现在 Xcode 9 中,此错误表明 TCP 连接已关闭。当我在 socket.io 分支上打开这个问题时,专家说:

This library operates on a fairly high level above the underlying networking. It relies on either URLSession or Starscream to tell it when the connection is lost.

任何人都可以帮助我了解 URLSession 为什么 TCP 被关闭,因为我对 iOS 还很陌生。

最佳答案

首先要说的是,保持 AppDelegate 精简的方法是个好主意。

关于deinit:当对象不再存在时,将调用该函数。由于全局变量将“永远”存在 - 只要它们被分配给不同的对象 - 它们只会在程序终止时被清除(而不是:后台模式等)。因此,您永远不会看到 deinit 调用。

您对生命周期的想法是正确的,如果您正确地完成了所有操作,就不应该有任何差异 - 我无法在这里判断,因为您没有显示任何有关如何以及何时的代码该全局套接字已创建/初始化等。

关于更新的问题:不幸的是,我不知道socket.io库。但简单看一下,您的代码在 AppDelegate 和其他版本之间略有不同。这可能是一个时间问题 - 只需检查(也许修复)一些事情:

  • 什么时候调用connect()
  • 在连接或调用 emit 之前,您可能需要先设置所有 ...on()-Handlers;否则服务器可能在一切设置正确之前做出响应
  • 检查您是否可以集中设置一个...on()-处理程序,而不是在每个sendBookingRequest-调用中设置
  • 什么是jwtToken?它是您应用程序的 API token ,还是某种 seesion token ?什么时候存储该值,为什么将其存储在钥匙串(keychain)中?它的值在请求/响应期间可能会改变吗?

关于ios - 代码在 AppDelegate 中工作,但不在任何其他类中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47827393/

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