FMMusicViewController.h 571 B

1234567891011121314151617181920212223
  1. //
  2. // FMMusicViewController.h
  3. // FreeMusic
  4. //
  5. //
  6. #import <UIKit/UIKit.h>
  7. #import "FMBaseViewController.h"
  8. @class FMSongListModel,FMSongModel;
  9. @interface FMMusicViewController : FMBaseViewController<UIAlertViewDelegate>
  10. {
  11. FMSongModel * _songModel;
  12. }
  13. @property (nonatomic,strong) FMSongListModel * songListModel;
  14. @property (nonatomic,strong) NSMutableArray * array;
  15. @property (nonatomic,assign) NSInteger index;
  16. @property (nonatomic,assign) BOOL only;
  17. +(FMMusicViewController *)shareMusicViewController;
  18. -(void)playMusicWithSongLink:(FMSongListModel*)model;
  19. @end