diff --git a/README.md b/README.md index ac2be33b..87c6fa33 100644 --- a/README.md +++ b/README.md @@ -5,18 +5,6 @@ SignalR-ObjC is a client library for iOS and Mac OS X. It's built on top of two popular open source libraries [AFNetworking](https://github.com/AFNetworking/AFNetworking) and [SocketRocket](https://github.com/square/SocketRocket). SignalR-ObjC is intended to be used along side ASP.NET SignalR, a new library for ASP.NET developers that makes it incredibly simple to add real-time functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time. -For example, here's how easy it is to get started: -```objective-c -SRConnection *connection = [SRConnection connectionWithURL:@"http://localhost/mysite/echo"]; -connection.received = ^(NSString * data) { - NSLog(data); -}; -connection.started = ^{ - [connection send:@"hello world"]; -}; -[connection start]; -``` - ## Installation ### Installation with CocoaPods