Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 26th, 2012  |  syntax: Objective C  |  size: 0.49 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. //
  2. //  PPicFeedCommentsController.h
  3. //  PicLyf
  4. //
  5. //  Created by PicLyfMini2 on 4/26/12.
  6. //  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10. #import "PPic.h"
  11. #import "PPicCommentsList.h"
  12.  
  13. @interface PPicCommentsController : UITableViewController <PModelListDelegate> {
  14.   PPic               *_pic;
  15.   PPicCommentsList   *_picCommentsList;
  16.   NSMutableArray     *_tableViewData;
  17. }
  18.  
  19. - (id) initWithPic:(PPic *)aPic;
  20. - (void) fetchPicComments;
  21.  
  22. @end