套接字connectUser在swift中被多次触发

时间:2016-03-21 10:06:13

标签: javascript node.js socket.io swift2 xcode7.1

我从github https://github.com/appcoda/SocketIOChat

下载了一个示例套接字项目

当我运行应用程序时它工作正常,但问题是,在我退出用户并输入另一个名称进行连接的情况下,connectUser方法会根据连接的时间被触发多次。我只想让它连接一次。例如,下面是上面示例中的一段代码

func askForNickname() {
        let alertController = UIAlertController(title: "SocketChat", message: "Please enter a nickname:", preferredStyle: UIAlertControllerStyle.Alert)

        alertController.addTextFieldWithConfigurationHandler(nil)

        let OKAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { (action) -> Void in
            let textfield = alertController.textFields![0]
            if textfield.text?.characters.count == 0 {
                self.askForNickname()
            }
            else {
                self.nickname = textfield.text

                SocketIOManager.sharedInstance.connectToServerWithNickname(self.nickname, completionHandler: { (userList) -> Void in
                    dispatch_async(dispatch_get_main_queue(), { () -> Void in
                        if userList != nil {

                             print("USerlIst:\(userList)")
                            self.users = userList
                            self.tblUserList.reloadData()
                            self.tblUserList.hidden = false
                        }
                    })
                })
            }
        }

        alertController.addAction(OKAction)
        presentViewController(alertController, animated: true, completion: nil)
    }

每次当我使用用户名输入聊天时,{I-}}方法会被我尝试输入名称并多次打印列表的次数触发。我已经检查过,在上面的示例中,套接字是作为单例类创建的,并且每次使用相同的实例时。我应该怎么做以防止这个多次通话?

1 个答案:

答案 0 :(得分:0)

当我搜索时,似乎每个socket.on都添加了一个处理程序,所以我通过在调用on事件之前添加socket.off(' event')来修复它。