You can show a tutorial for one gesture.
APIParser *service = [APIParser sharedMediaServer];
[service UserRequestWithType:APIGetAllEvents
parameters:[NSString stringWithFormat:@"userId=%d", userID]
cookieValue:nil
customeobject:nil
block:^(NSError *error, id objects, NSString *responseString, NSString *nextUrl, NSMutableArray *responseArray)
{
if (error) {
//Handle Error
}
else {
if (responseArray.count > 0) {
//Handle Response Array
}
else {
//Handle null response array
}
}
}];
Dhruvik Rao, dhruvik.rao@gmail.com
Copyright (c) 2015 Dhruvik Rao <dhruvik.rao@gmail.com>