2014-12-12 4 views
0

나는 내 프로젝트에서 해당 파일을 복사 down.When 드롭에 대한 라이브러리를 사용하는 것을 시도하고있다, 나는 알 수없는 유형의 이름 jQuery과도 유형을 예상 같은 오류를 많이 말을 이상한 오류를 얻고있다. 무엇이 잘못 되었나요?알 수없는 유형의 이름 jQuery과

@protocol kDropDownListViewDelegate; 
@interface DropDownListView : UIView<UITableViewDataSource,UITableViewDelegate> 
{ 

    UITableView *_kTableView; 
    NSString *_kTitleText; 
    NSArray *_kDropDownOption; 
    CGFloat R,G,B,A; 
    BOOL isMultipleSelection; 
} 
@property(nonatomic,strong)NSMutableArray *arryData; 
@property (nonatomic, assign) id<kDropDownListViewDelegate> delegate; 
- (void)fadeOut; 
// The options is a NSArray, contain some NSDictionaries, the NSDictionary contain 2 keys, one is "img", another is "text". 
- (id)initWithTitle:(NSString *)aTitle options:(NSArray *)aOptions xy:(CGPoint)point size:(CGSize)size isMultiple:(BOOL)isMultiple; 
// If animated is YES, PopListView will be appeared with FadeIn effect. 
- (void)showInView:(UIView *)aView animated:(BOOL)animated; 
-(void)SetBackGroundDropDwon_R:(CGFloat)r G:(CGFloat)g B:(CGFloat)b alpha:(CGFloat)alph; 
@end 

@protocol kDropDownListViewDelegate <NSObject> 
- (void)DropDownListView:(DropDownListView *)dropdownListView didSelectedIndex:(NSInteger)anIndex; 
- (void)DropDownListView:(DropDownListView *)dropdownListView Datalist:(NSMutableArray*)ArryData; 
- (void)DropDownListViewDidCancel; 
@end 

답변

3

#import; 아마도 :

#import <UIKit/UIKit.h> 

이것은 일반적으로 접두사 파일 (미리 컴파일 된 헤더)의 일부입니다 그래서 어떤 방법으로 고장이 가능합니다.

+0

알겠습니다. 감사합니다 .-) – iSD