ios - 如何在 UITableview 单元格中正确显示分隔的 JSON 数据?

标签 ios objective-c arrays json uitableview

我已经能够从本地 JSON 文件获取数据以在表格 View 中显示

但显示如下:

......................细胞1...................... ........

cookies

3杯通用面粉

2 汤匙泡打粉

1/2茶匙盐

......................单元格 2...................... ........

12 个完整的晚餐卷或小三明治面包(我用的是全麦)

1 磅薄切烤牛肉或火腿(或两者!)

...................................................... ......

我需要它来显示每种成分,将其分离到自己的单元格中,如下所示:

......................细胞1............ ........

cookies

......................细胞2...................... ........

3 杯通用面粉

......................细胞3............ ........

2 汤匙泡打粉

................................单元格 4................................ ........

1/2茶匙盐

................................单元格 5................................ ........

12个完整的晚餐卷或小三明治面包(我用的是全麦)

......................单元格 6 ..................... ........

1 磅薄切烤牛肉或火腿(或两者!)

...................................................... ......

我需要什么代码才能正确显示数据?这是我当前的代码:

   /////////locations.json/////////////////////////////
    {
      "locations": [

    { "ingredients" : "Biscuits\n3 cups All-purpose Flour\n2 Tablespoons Baking Powder\n1/2 teaspoon Salt\nShortened for example” },

    { "ingredients" : "12 whole Dinner Rolls Or Small Sandwich Buns (I Used Whole Wheat)\n1 pound Thinly Shaved Roast Beef Or Ham (or Both!)\nShortened for example” },  
    //many more records.  only included 2 for example                            
      ]
    }
    /////////Location.h/////////////////////////////////////////
    #import <Foundation/Foundation.h>

    @interface Location : NSObject

    - (id)initWithJSONDictionary:(NSDictionary *)jsonDictionary;

    @property (readonly) NSString *ingredients;

    @end


    ////////Location.m////////////////////////////////////
    #import "Location.h"

    @implementation Location

    // Init the object with information from a dictionary
    - (id)initWithJSONDictionary:(NSDictionary *)jsonDictionary {
    if(self = [self init]) {
        // Assign all properties with keyed values from the dictionary

        _ingredients = [jsonDictionary objectForKey:@"ingredients"];
    }
    return self;
    }
    @end


    ////////JSONLoader.h////////////////////////////////////
    #import <Foundation/Foundation.h>

    @interface JSONLoader : NSObject

    // Return an array of Location objects from the json file at location given by url
    - (NSArray *)locationsFromJSONFile:(NSURL *)url;
    @end


    ////////JSONLoader.m////////////////////////////////////
    #import "JSONLoader.h"
    #import "Location.h"

    @implementation JSONLoader

    - (NSArray *)locationsFromJSONFile:(NSURL *)url {
    // Create a NSURLRequest with the given URL
    NSURLRequest *request = [NSURLRequest requestWithURL:url
                                             cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
                                         timeoutInterval:30.0];

    // Get the data
    NSURLResponse *response;
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response  error:nil];

    // Now create a NSDictionary from the JSON data
    NSDictionary *jsonDictionary = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];

    // Create a new array to hold the locations
    NSMutableArray *locations = [[NSMutableArray alloc] init];

    // Get an array of dictionaries with the key "locations"
    NSArray *array = [jsonDictionary objectForKey:@"locations"];
    // Iterate through the array of dictionaries
    for(NSDictionary *dict in array) {
        // Create a new Location object for each one and initialize it with information in the dictionary
        Location *location = [[Location alloc] initWithJSONDictionary:dict];
        // Add the Location object to the array
        [locations addObject:location];
    }

    // Return the array of Location objects
    return locations;
}
@end

////////TableViewController.h////////////////////////////////////
#import <UIKit/UIKit.h>
#import "Location.h"

@interface FilterViewController : UITableViewController

@property (weak, nonatomic) Location *location;

@end


////////TableViewController.m////////////////////////////////////
#import "FilterViewController.h"
#import "LocationsViewController.h"
#import "Location.h"
#import "JSONLoader.h"

@implementation FilterViewController {
    NSArray *_locations;   
}
- (void)viewDidLoad {
    [super viewDidLoad];

    // Create a new JSONLoader with a local file URL
    JSONLoader *jsonLoader = [[JSONLoader alloc] init];
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"locations" withExtension:@"json"];

    // Load the data on a background queue...
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        _locations = [jsonLoader locationsFromJSONFile:url];
        // Now that we have the data, reload the table data on the main UI thread
        [self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];

        });
}
// Just before showing the LocationDetailViewController, set the selected Location object
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    LocationsViewController *vc = segue.destinationViewController;
    NSIndexPath *indexPath = [self.tableView indexPathForCell:sender];
    vc.location = [_locations objectAtIndex:indexPath.row];
}

#pragma mark - Table View Controller Methods

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"FilterCell"];

    Location *location = [_locations objectAtIndex:indexPath.row];
    cell.textLabel.text = location.ingredients;
    cell.imageView.image = [UIImage imageNamed:@"ingredientsicon3232.png"];
    return cell;   
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [_locations count];
}
@end

注意:我无法更改 JSON 数据格式,因为它来自外部来源,而且“成分”键比我在示例中发布的要多得多。

最佳答案

编辑:

一些示例代码可让您正常工作。

// JSONLoader.m 

- (NSArray *)locationsFromJSONFile:(NSURL *)url {
    // Existing code .......

    // Get an array of dictionaries with the key "locations"
    NSArray *array = [jsonDictionary objectForKey:@"locations"];
    // Iterate through the array of dictionaries
    for(NSDictionary *dict in array) {
        NSString *string = [dict objectForKey:@"ingredients"];
        NSArray *brokenIntoParts = [string componentsSeparatedByString:@"\n"];
        for (NSString *ingredient in brokenIntoParts) {
            [locations addObject:ingredient];
        }
    }

    // Return the array of Location objects
    return locations;
}

// FilterViewController.m

#pragma mark - Table View Controller Methods

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"FilterCell"];

    cell.textLabel.text = [_locations objectAtIndex:indexPath.row];
    cell.imageView.image = [UIImage imageNamed:@"ingredientsicon3232.png"];
    return cell;   
}

原文:

你的代码看起来不错,实际上只是改变了你的数据,

{
  "locations": [ { "ingredients" : "Biscuits"}, 
                 { "ingredients" : "3 cups All-purpose Flour"},
                 { "ingredients" : "Tablespoons Baking Powder"}
.
.
.                                                               
]}

这应该可以解决您的问题,基本上您需要“keyword”:ingredient 的键:值,如果没有请评论,祝您好运。

关于ios - 如何在 UITableview 单元格中正确显示分隔的 JSON 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38416655/

相关文章:

ios - 绑定(bind)到命令的 TapGestureRecognizer 中数据刷新的空引用异常

ios - EXC_BAD_ACCESS 和 stringByAppendingString

ios - 从 NSDictionary 键填充单元格

javascript - 点击监听器触发两次

javascript - 如何重组 .forEach 以便我可以摆脱它

ios - 在 UIScrollView 中高效加载多个 View

ios - 按钮不会从 swift iOS 的 super View 中删除文本字段及其本身

ios - 当从不同的 Controller seguing 时, ScrollView 低于它应该的

iOS6 : How to use the conversion feature of YUV to RGB from cvPixelBufferref to CIImage

javascript - 根据允许的项目数组删除 JSON 项目