我正在尝试编写一个简单的服务器和客户端聊天应用程序,但是我的代码直接跳转到异常,这意味着它无法创建与端口的连接。
服务器:
if #available(iOS 10.0, *) {
//Not sure of a way to do something similar here.
} else {
//The following lines change the textColor of UIDatePicker to white in iOS9 and older.
self.setValue(UIColor.white, forKey: "textColor")
self.sendAction(Selector("setHighlightsToday:"), to: nil, for: nil)
}
答案 0 :(得分:0)
确保您指定的端口尚未使用(端口号80)。您可能正在同一端口(例如Web服务器)上运行另一个应用程序。