platform :ios, '8.0' target :'targetName' do pod 'Masonry', '~> 1.0.1' pod 'SDCycleScrollView', '~> 1.65' pod 'SDWebImage', '~> 3.8.1' pod 'MBProgressHUD', '0.9.2' pod 'MJExtension', '~> 3.0.13' pod 'IQKeyboardManager', '~> 4.0.4' pod 'MJRe…
public class DemoModel { public string Name { get; set; } public int Age { get; set; } } [HttpPost] public ActionResult About(DemoModel model) { return Json(model); } [HttpPost] public ActionResult About(string Name, int Age) { return Json(model); }…