Avatar
[connection] nw_connection_add_timestamp_locked_on_nw_queue [C4] Hit maximum timestamp count, will start dropping events 動作確認をしているとデバックエリアに上記のメッセージが表示されたのですが、ネットで調べても情報が出てきませんでした。もし何か分かる方いましたらご教示いただけると助かります。 上記が出た経緯は下記のようにDelegateをバケツリレーのように渡すようにしたら出るようになりました。 protocol HogeDelegate { func hoge() } struct CellView: View { let delegate: HogeDelegate Button { delegate.hoge() } } final class Cell: UITableViewCell { init(delegate: HogeDelegate) { let vc = UIHostingController(rootView: CellView(delegate: delegate) } } final class ViewController: UITableViewDataSource, HogeDelegate { func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = Cell(delegate: self) return cell } func hoge() {} } (edited)