创建一个objective-c file , 可以选择 category, extension ,protocol, empty 文件。
选category 就能建立类别。
自己创建一个App-Prefix.pch拖进来。//
// Prefix header
//
// The contents of this file are implicitly included at the beginning of every source file.
//
#import <Availability.h>
#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)