从Parse填充TableView

时间:2015-05-29 13:56:31

标签: ios objective-c arrays uitableview parse-platform

我正在尝试使用存储在parse.com中的字符串列表填充tableview。  我做了这3个步骤,但没有返回任何东西,与普通数组不一样?谢谢!

- (void)viewDidLoad {
    [super viewDidLoad];
    [self PFQueryNotes]; 
}

 //PFQuery Notes
- (void)PFQueryNotes {
    // Using PFQuery
    PFQuery *notesquery = [PFQuery queryWithClassName:@"Notes"];
    self.notesArray = [notesquery findObjects];
}    

//Returns the number of cells to display in the tableview
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [self.notesArray count];
}

//Fills the cells with the array values
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text = [self.notesArray objectAtIndex:indexPath.row];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell;
}

0 个答案:

没有答案