Skip to content

poulh/GMIRCClient

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GMIRCClient

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.

Requirements

  • iOS 8.0+
  • Xcode 7.1+

Installation

GMIRCClient is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "GMIRCClient"

Usage

Registering to a server

let socket = GMSocket(host: "irc.freenode.net", port: 6667)
irc = GMIRCClient(socket: socket)
irc.register("nickname", user: "username", realName: "Firstname Lastname")

Event handling

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)")
}

Author

Giuseppe Morana aka Eugenio, [email protected]

License

GMIRCClient is available under the MIT license. See the LICENSE file for more info.

About

A lightweight IRC client for iOS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 70.8%
  • Shell 25.7%
  • Ruby 1.9%
  • Objective-C 1.4%
  • C 0.2%