我有一个WebService,它给了我下面的Json-String: "{\"password\" : \"1234\", \"user\" : \"andreas\"}" 我打电话给web服务,并尝试parsing返回的数据,如: [NSURLConnection sendAsynchronousRequest: request queue: queue completionHandler: ^(NSURLResponse *response, NSData *data, NSError *error) { if (error || !data) { // Handle the error } else { // Handle the success NSError *errorJson = nil; NSDictionary *responseDict = [NSJSONSerialization JSONObjectWithData: data options: NSJSONReadingMutableContainers error: &errorJson]; NSString *usr = [responseDict […]
我目前正在尝试将某些对象的Json表示forms转换为NSArray。 我使用RestKit通过我们编写的Api获取响应。 现在我想将RKResponse转换成一个对象数组。 我怎样才能做到这一点 ?
在这里我想通过urlparsingJSON。 这是在url上可用的实际JSON数据。 所以我需要parsing它,并阅读我的应用程序使用Alamofire。 但我无法做到这一点。 JSON数据在我的url。 { "main": [ { "date": "2017-01-11", "USDARS": "15.8302", "USDCLP": "670.400024", "USDSDG": "6.407695" }, { "date": "2017-01-12", "USDARS": "15.804999", "USDCLP": "661.599976", "USDSDG": "6.407697" }, { "date": "2017-01-13", "USDARS": "15.839041", "USDCLP": "659.200012", "USDSDG": "6.407704" }, { "date": "2017-01-14", "USDARS": "15.839041", "USDCLP": "659.200012", "USDSDG": "6.407704" } ] } 我如何在3.0版本中使用Alamofire来读取它 下面是实际上我试图parsingJSON数据通过url。 Alamofire.request("myurl") .responseJSON { […]
我正在parsing一个JSONstring到一个自定义表格视图单元格。 如何调整标签的高度以适应内容文本,并调整单元格的大小以适应其内容。 代码: #import "DEMOSecondViewController.h" #import "DEMONavigationController.h" #import "PostsObject.h" #import "RNBlurModalView.h" #import "AFNetworking.h" @interface DEMOSecondViewController () @end @implementation DEMOSecondViewController @synthesize tableView = _tableView, activityIndicatorView = _activityIndicatorView, movies = _movies; – (void)viewDidLoad { [super viewDidLoad]; self.title = @"iCelebri.com"; self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Menu" style:UIBarButtonItemStylePlain target:(DEMONavigationController *)self.navigationController action:@selector(showMenu)]; self.tableView.separatorColor = [UIColor clearColor]; // Setting Up Activity Indicator […]
我正在开发一个iOS应用程序,将上传一个图像(从前置摄像头或画廊)到networking服务器。 我不知道如何从iOS发送图像,以及如何在PHP中检索。 请帮助。
我们使用了第三方服务,它提供了一个JS文件。 js文件启动一个http请求并得到一个json。我们parsing了json并得到了我们想要的内容,但json格式总是改变。 有没有办法parsingJSON,但不更新我们的应用程序?
我正在面对一个JSONparsing问题,我不知道如何解决。 我需要这部分的JSON数据 "columns": { "created_at": "DESC", "id": "DESC" } 被存储在[String: String]? 可选字典。 所以,这是我正在使用的代码: self.columns = json["columns"].dictionary?.map { (key, value) -> (String, String) in return (key, value.stringValue) } 但是这会产生一个编译器错误: 'inout JSON'不能转换为'JSON' 我应该补充说,这是一个非常大的一块JSON数据的一部分,这是唯一的问题。 任何线索将不胜感激,我有点卡在这一个。
我是新来的ios和我目前在json工作。 我只是使用iTunes的十大专辑,这将显示在表格视图我收到的数据我格式化和显示在表视图,但我可以只显示专辑名称,但我想显示特定专辑的所有细节将显示在同一个小区。 这是我的完整代码 – (void)viewDidLoad { [super viewDidLoad]; albumtop=[[NSMutableArray alloc]init]; [[self itunestTable]setDataSource:self]; [[self itunestTable]setDelegate:self]; NSURL *url=[NSURL URLWithString:@"https://itunes.apple.com/in/rss/topalbums/limit=10/json"]; NSURLRequest *req=[NSURLRequest requestWithURL:url]; connection=[NSURLConnection connectionWithRequest:req delegate:self]; if(connection) { albumdata =[[NSMutableData alloc]init]; } } -(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { [albumdata setLength:0]; } -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { [albumdata appendData:data]; } -(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { NSLog(@"error in connection"); } […]
我从REST API获得了一个响应对象(res)。 它是types的。 __NSArrayM 。 它包含我想要parsing的JSON格式的string。 { JsonResult = "[ { \"IsAuth\":\"true\" } ]"; } 这是一个很长的JSONstring,为简单起见,我缩短了它。 为了parsing一个json,这个对象需要是Dictionarytypes的,但是我不能将__NSArrayMtypes的对象__NSArrayM成它。 我搜查了很多,但无法弄清楚这个JSONstring。 附加:无论哪个对象我试图施放响应对象。 我得到的错误 – 无法将“__NSArrayM”(0x107e86c30)types的值转换为“NSData”(0x107e86168)或我投入的任何数据types。
我想要的是 : 我想在我的应用程序中使用自动完成的文本字段。由于我的数据来自Web服务,我想用JSON响应执行“自动完成”。 我知道的 : 我知道,首先我必须从Web服务获取数据。 然后我需要parsing它,并用parsing的数据填充数组,然后我可以使用该数组来执行自动完成。 问题: 我不知道如何发送请求来获取用户在文本字段中键入的每个“前缀”的JSON数据(意味着我想在打字过程中使用JSON数据)。 我知道如何独立执行“JSONparsing”和“自动完成文本字段”,但不知道“TextField自动完成与JSON响应”。 我试了很多,find答案,但我失败了。 所以请帮帮我… 我正在使用doautocompletetextfield来执行“文本字段自动完成” 。 更好的build议,这个问题将不胜感激。 任何解决scheme