VLCCloudServiceCellTableViewCell.m 479 B

123456789101112131415161718192021222324
  1. //
  2. // VLCCloudServiceCellTableViewCell.m
  3. // VLC for iOS
  4. //
  5. // Created by Carola Nitz on 23/12/14.
  6. // Copyright (c) 2014 VideoLAN. All rights reserved.
  7. //
  8. #import "VLCCloudServiceCellTableViewCell.h"
  9. @implementation VLCCloudServiceCellTableViewCell
  10. - (void)awakeFromNib {
  11. // Initialization code
  12. }
  13. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  14. [super setSelected:selected animated:animated];
  15. // Configure the view for the selected state
  16. }
  17. @end