GMIRCClient is a lightweight iOS IRC client, entirely written in Swift.
NOTE: currently the set of features is minimal but I hope to extend them soon.
- iOS 8.0+
- Xcode 7.1+
GMIRCClient is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "GMIRCClient"
let socket = GMSocket(host: "irc.freenode.net", port: 6667)
irc = GMIRCClient(socket: socket)
irc.register("nickname", user: "username", realName: "Firstname Lastname")
irc.delegate = self
func didWelcome() {
print("Received welcome message - ready to join a chat room")
irc.join("#test")
}
func didJoin(channel: String) {
print("Joined chat room: \(channel)")
irc.sendMessageToNickName("Hi, I'm Nick. Is there anybody?", nickName: "Lela")
}
func didReceivePrivateMessage(text: String, from: String) {
print("Received message from \(from): \(text)")
}
Giuseppe Morana aka Eugenio, [email protected]
GMIRCClient is available under the MIT license. See the LICENSE file for more info.