rump-ios 1.0.0

rump-ios 1.0.0

TestsTested
LangLanguage Obj-CObjective C
License Apache 2
ReleasedLast Release Dec 2014

Maintained by Unclaimed.



rump-ios 1.0.0

  • By
  • Timo Puronen

Rump-iOS

Rump-iOS is Rump client for iOS devices. For more information about Rump, see: https://github.com/raimohanska/rump

Using Rump-iOS

Implement RumpDelegate methods to receive notification about response from Rump server.

-(void)connectedWith:(NSSet*)others {
  ...
}

-(void)onNoMatch {
  ...
}

-(void)onFailedWithError:(NSError*)error {
  ...
}

Use Rump:

CLLocationCoordinate2D loc = ...
Rump* rump = [[Rump alloc]initWithBaseUrl:[NSURL URLWithString:@"http://rump.domain.com/demo"] user:@"user" nickname:@"John Doe" delegate:self];
[rump rumpInLocation:loc];