Hacktoberfest
仓库指标
- Star
- (1,258 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
Declaring a class as follows
#import "DBCameraView.h"
@interface CameraView : DBCameraView
@end
throws plenty errors, because the UIKit declarations are missing. DBCameraView itself inherits from UIView without including the header. This should be fixed by adding #import <UIKit/UIKit.h> to all files using UIKit classes.
Would you accept a PR?