我的代码中预计会出现类型错误iOS

时间:2015-08-20 08:02:37

标签: ios objective-c

这是我的代码请解释我的问题...

#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

请告诉我错误......

2 个答案:

答案 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'

和许多类似的问题......