안녕하세요. UIAlertView
카테고리를 사용하고 싶지만 오류가 발생합니다. use of undeclared identifier UIAlertView
& cannot find interface declaration for UIAlertView
. 내가 뭘 잘못하고있어?UIAlertView 카테고리 : 오류 발생
여기
#import <Foundation/Foundation.h>
@interface UIAlertView(error)
+(void)error:(NSString*)msg;
@end
여기 is.h
#import "UIAlertView+error.h"
@implementation UIAlertView(error)
+(void)error:(NSString*)msg
{
[[[UIAlertView alloc] initWithTitle:@"Error"
message:msg
delegate:nil
cancelButtonTitle:@"Close"
otherButtonTitles: nil] show];
}
@end
어떤 아이디어가하는 .m입니까?
I user7221 @를 먼저 몇 가지 기본 사항을 공부하라고 제안합니다. 수입과 프레임 워크를 다루는 것은 이해해야 할 가장 기본적인 것들입니다. 어디서나 문서화. 그렇게 요구하지 않습니다. – plluke