TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Apache 2 |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Rump-iOS is Rump client for iOS devices. For more information about Rump, see: https://github.com/raimohanska/rump
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];