Guest User

Untitled

a guest
Aug 14th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. CustomTableViewCell with xib. I cann't wire up the labels to the custom state table cell
  2. @interface CustomTableViewCell : UITableViewCell
  3. {
  4. IBOutlet NSString *placeName;
  5. IBOutlet NSString *address;
  6. IBOutlet NSString *distance;
  7. }
  8.  
  9. @property (nonatomic, retain) IBOutlet NSString *placeName;
  10. @property (nonatomic, retain) IBOutlet NSString *address;
  11. @property (nonatomic, retain) IBOutlet NSString *distance;
  12.  
  13. @end
  14.  
  15. IBOutlet UILabel * placeNameLabel
  16. ...
Add Comment
Please, Sign In to add comment