34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OF_APPLICATION_DELEGATE(TestApp)
@implementation TestApp
- (void)applicationDidFinishLaunching: (OFNotification *)notification
{
IRCConnection *connection = [[IRCConnection alloc] init];
connection.server = @"irc.freenode.net";
connection.nickname = @"ObjIRC";
connection.username = @"ObjIRC";
connection.realname = @"ObjIRC";
connection.delegate = self;
[connection connect];
}
|
|
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OF_APPLICATION_DELEGATE(TestApp)
@implementation TestApp
- (void)applicationDidFinishLaunching: (OFNotification *)notification
{
IRCConnection *connection = [[IRCConnection alloc] init];
connection.server = @"irc.oftc.net";
connection.nickname = @"ObjIRC";
connection.username = @"ObjIRC";
connection.realname = @"ObjIRC";
connection.delegate = self;
[connection connect];
}
|