Shaik Ghouse Basha
Shaik Ghouse Basha
public func uploadImage(urlString:String, imageFile:UIImage, handler:(responseObject:AnyObject? , success: Bool?)-> Void) { let imageData:NSData = UIImageJPEGRepresentation(imageFile, 1.0) SRWebClient.POST(urlString) .data(imageData, fieldName:"image", data:["apiKey":apiKey,"folder":folderName,"tags":tagNames]) .send({(response:AnyObject!, status:Int) -> Void in println(status) println(response) handler(responseObject: response, success: true)...
Thanks for sharing awesome wrapper class, need help for search in textfield 1 with only cities and in next textfield 2, need to search within that selected city, locations I...
When we side to view leftview, and rotate, it comes to center view Orientation is not working
Hi, I am using leftviewcontroller (with uinavigationcontroller) and centerviewcontroller (with uinavigationcontroller). When we go into child controllers from centerviewcontroller i am setting self.swipecontroller.canswipeleft=NO. (it works fine) when we go into...