CellsViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:0k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  CellsViewController.h
  3. //  Cells
  4. //
  5. //  Created by Jeff LaMarche on 7/12/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #define kNameValueTag 1
  9. #define kColorValueTag 2
  10. #import <UIKit/UIKit.h>
  11. @interface CellsViewController : UIViewController 
  12. <UITableViewDataSource, UITableViewDelegate>
  13. {
  14. NSArray *computers;
  15. }
  16. @property (nonatomic, retain) NSArray *computers;
  17. @end