这是我的代码请解释我的问题...
#import <Foundation/Foundation.h>
#import <MediaPlayer/MediaPlayer.h>
#import <AVFoundation/AVFoundation.h>
#import <UIKit/UIKit.h>
@interface AudioPlayerModel : NSObject
**-(AVPLayer*) getPlayer;** //error expected a type
@end
请告诉我错误......
答案 0 :(得分:2)
您已将AVPLayer
放入大写字母L.您需要AVPlayer
。
答案 1 :(得分:1)
嘿,AVPlayer*
而不是AVPLayer*
......你已经把L帽......
但为了清晰检查 "Expected a type" error pointing to the return type of a method
和 Objective C - Error: 'Expected a type'
和许多类似的问题......