上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 82 下一页
摘要: 这篇文章将会详细解析BluetoothAdapter的详细api, 包括隐藏方法, 每个常量含义.一 BluetoothAdapter简介1.继承关系该类仅继承了Object类;2.该类作用BluetoothAdapter代表了移动设备的本地的蓝牙适配器, 通过该蓝牙适配器可以对蓝牙进行基本操作, ... 阅读全文
posted @ 2015-08-26 16:18 netcorner 阅读(10772) 评论(0) 推荐(0) 编辑
摘要: 1.异常处理自动补全快捷键Alt + Enter,就可以看到修复这个问题的提示。ActionMac OSXWin/Linux注释代码(//)Cmd + /Ctrl + /注释代码(/**/)Cmd + Option + /Ctrl + Alt + /格式化代码Cmd + Option + LCtrl... 阅读全文
posted @ 2015-08-22 20:45 netcorner 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1 Android手机目前常见的分辨率1.1 手机常见分辨率:4:3VGA 640*480 (Video Graphics Array)QVGA 320*240 (Quarter VGA)HVGA 480*320 (Half-size VGA)SVGA 800*600 (Super VGA)5:3W... 阅读全文
posted @ 2015-08-21 17:05 netcorner 阅读(613) 评论(0) 推荐(0) 编辑
摘要: #import #import "AppDelegate.h"int main(int argc, char * argv[]) { @try {//可能要抛出的异常 //手动写入异常 @throw [NSException exceptionWithNam... 阅读全文
posted @ 2015-08-19 14:27 netcorner 阅读(449) 评论(0) 推荐(0) 编辑
摘要: #import #import "AppDelegate.h"@interface A : NSObject@end@implementation A@end@interface AA : A@end@implementation AA@end@interface B : NSObject@end@... 阅读全文
posted @ 2015-08-19 14:22 netcorner 阅读(744) 评论(0) 推荐(0) 编辑
摘要: 把内部的状态通知给外界,我们可以制定一个变量,然后这个变量从外界来指定,之后我们可以通过变量去通知给外界有什么发生了。按照上文讲的到新建一个protocol,名字为IPeople#import //oc里面的协议相当于java里面的接口@protocol IPeople -(int)getAge;-... 阅读全文
posted @ 2015-08-19 14:16 netcorner 阅读(530) 评论(0) 推荐(0) 编辑
摘要: oc中的协议相当于java中的接口,我们在定议协议的时候命名规则可以按照java中接口命名的规则。新建一个protocol(协议),命名为IPeople#import //oc里面的协议相当于java里面的接口@protocol IPeople //可以写入多个接口,以逗号(,)隔开-(int... 阅读全文
posted @ 2015-08-19 13:47 netcorner 阅读(346) 评论(0) 推荐(0) 编辑
摘要: oc 中的.m 这是objective c语言oc 中的.mm这是objective c++语言 阅读全文
posted @ 2015-08-18 15:23 netcorner 阅读(3370) 评论(0) 推荐(0) 编辑
摘要: 1、和以前新建新文件一样。2、当然选IOS啦,不过OS X也有这个选项,然后Objctive-C File。3、在File Type里选就OK啦。 阅读全文
posted @ 2015-08-18 14:27 netcorner 阅读(557) 评论(0) 推荐(0) 编辑
摘要: #import #import "AppDelegate.h"int (^max)(int,int);//定义代码块,类似c的函数指针typedef void (^SayHello)(); //指定一个类型的代码块;int main(int argc, char * argv[]) { //通... 阅读全文
posted @ 2015-08-18 14:22 netcorner 阅读(477) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 82 下一页