apple watch http request
问题 Using import, I can use this module for iPhone, but not for apple watch app.I also want to use this library for writing apple watch app. Is it possible? If possible, how? Can you please provide an alternative if it is not possible? Thanks beforehand Simple example of http request for iPhone import Alamofire Alamofire.request(.GET, requestUrl, headers: self.headers(), encoding:.JSON).responseJSON { (rJ) -> Void in let data = rJ.result.value let err = rJ.result.error } 回答1: Sample Http request