我正在使用 parse.com。我正在尝试显示评论,但为了获得评论,我必须从我的 DetailViewController 获取 PFObject,但它不会将 PFObject 返回到 CommentsViewController
编辑
这是所有代码。我是目标 c 的新手,所以我可能在做一些愚蠢的事情
评论视图控制器
#import "CommentsViewController.h"
#import "DetailViewController.h"
#import "CommentsCell.h"
@interface CommentsViewController (){
NSArray *commentsArray;
id commentInstance;
}
@end
@implementation CommentsViewController
- (id)init {
if (self = [super init]) {
[self performSelector:@selector(commentsQuery)];
}
return self;
}
- (void)commentsQuery {
commentInstance = [[DetailViewController alloc] init];
PFObject *tempObj = [commentInstance placeObject];
PFQuery *query1 = [PFQuery queryWithClassName:@"activity"];
[query1 whereKey:@"type" equalTo:@"comment"];
[query1 whereKey:@"place" equalTo:[NSString stringWithFormat:@"%@", [tempObj objectId]]];
NSLog(@"%@", tempObj);
[query1 orderByDescending:@"createdAt"];
[query1 findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
if (!error){
commentsArray = [[NSArray alloc]initWithArray:objects];
NSLog(@"%lu", (unsigned long)[commentsArray count]);
}
}];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
static NSString *CellIdentifier = @"Cell";
CommentsCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell == nil) {
cell = [[CommentsCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
PFObject *placeObj = [commentInstance placeObject];
cell.username.text = @"test";
return cell;
}
@end
详细信息视图控制器
#import "DetailViewController.h"
#import "CommentsViewController.h"
@interface DetailViewController (){
CommentsViewController *test;
}
@end
@implementation DetailViewController
@synthesize place;
@synthesize userPhoto, message, username, checkCount, photo, scroller, commentsTableView;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
test = [[CommentsViewController alloc] init];
self.commentsTableView.delegate = test;
self.commentsTableView.dataSource = test;
//Adjust the message label box height
CGSize textSize = [[place objectForKey:@"message"] sizeWithFont:[UIFont systemFontOfSize:12] constrainedToSize:CGSizeMake(201, CGFLOAT_MAX) lineBreakMode: NSLineBreakByWordWrapping];
userPhoto.file = [place objectForKey:@"thumbnail"];
[userPhoto loadInBackground];
username.text = [place objectForKey:@"username"];
message.text = [place objectForKey:@"message"];
checkCount.text = [NSString stringWithFormat:@"%@", [place objectForKey:@"checkMarkCount"]];
[message sizeToFit];
if ([place objectForKey:@"photo"] != Nil){
photo.file = [place objectForKey:@"photo"];
[photo loadInBackground];
//[photo sizeToFit];
photo.frame = CGRectMake(6, textSize.height + 50, photo.frame.size.width, photo.frame.size.height);
float sizeOfContent = 0;
UIView *lLast = [scroller.subviews lastObject];
NSInteger wd = lLast.frame.origin.y;
NSInteger ht = lLast.frame.size.height;
NSLog(@"%@", lLast);
sizeOfContent = wd+ht;
scroller.contentSize = CGSizeMake(scroller.frame.size.width, sizeOfContent+100);
}
else{
float sizeOfContent = 0;
UIView *lLast = [scroller.subviews lastObject];
NSInteger wd = lLast.frame.origin.y;
NSInteger ht = lLast.frame.size.height;
NSLog(@"%@", lLast);
sizeOfContent = wd+ht;
scroller.contentSize = CGSizeMake(scroller.frame.size.width, sizeOfContent+100);
}
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)checkMarkButton:(UIButton *)sender {
}
- (PFObject *)placeObject{
return place;
}
@end