From 25df145cea8538c6ce2e49b9ed820387caff53f2 Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Sat, 6 Feb 2016 09:31:54 -0500 Subject: [PATCH] Update README.md --- README.md | 12 ------------ 1 file changed, 12 deletions(-) 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