FMPlayingListViewController.h 291 B

1234567891011121314151617
  1. //
  2. // FMPlayingListViewController.h
  3. // FreeMusic
  4. //
  5. //
  6. #import <UIKit/UIKit.h>
  7. #import "FMBaseViewController.h"
  8. @class FMSongListModel;
  9. @interface FMPlayingListViewController : UIViewController
  10. {
  11. UITableView * _tableView;
  12. }
  13. @property (nonatomic,strong) NSMutableArray * array;
  14. @end