上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: http://www.phpgao.com/ 阅读全文
posted @ 2015-10-12 10:25 aprogrammer 阅读(32) 评论(1) 推荐(0) 编辑
摘要: 相信你现在已经了解为什么要使用 Git,并且熟悉命令行。现在开始真正的使用 Git,从安装 Git 开始。安装 Git安装 Git 不同 OS 是不同的,先来看 Mac 下安装,再来看 Windows。Mac在 Mac 上安装 Git 有多种途径:最简单的方法就是使用 Git OS X Instal... 阅读全文
posted @ 2015-09-22 17:16 aprogrammer 阅读(1768) 评论(0) 推荐(0) 编辑
摘要: C语言中没有输入输出语句,所有的输入输出功能都用 ANSI C提供的一组标准库函数来实现。文件操作标准库函数有: 文件的打开操作 fopen 打开一个文件 文件的关闭操作 fclose 关闭一个文件 文件的读写操作 fgetc 从文件中读取一个字符 ... 阅读全文
posted @ 2015-09-22 16:58 aprogrammer 阅读(792) 评论(0) 推荐(0) 编辑
摘要: NSString *uuid = [[NSUUID UUID] UUIDString]; NSLog(@"uuid = %@",uuid); 阅读全文
posted @ 2015-09-06 17:31 aprogrammer 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 最初:首先判断蓝牙状态是否支持和开启/***判断是否开启蓝牙*/-(void)centralManagerDidUpdateState:(CBCentralManager*)central{if(central.state!=CBCentralManagerStatePoweredOn){UIAle... 阅读全文
posted @ 2015-09-06 11:18 aprogrammer 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 1.//已知二叉树采用二叉链表存储结构,根节点所在链接点的地址为T,写一递归算法,求该二叉树中叶结点的数目intCOUNTLEAF(BTREET){if(T==NULL)return0;if(T->lchild==NULL&&T->rchild==NULL){return1;returnCOUNTL... 阅读全文
posted @ 2015-09-04 18:08 aprogrammer 阅读(100) 评论(0) 推荐(0) 编辑
摘要: appDelegate #define RONGCLOUD_IM_APPKEY @"k51hidwq1m2sb" #define kDeviceToken @"lzKtgLtA9vbCYX0V877Gc2JMSvnicNVKHA7I55vnR+9v4XolYQKISmmhuD3OPjzX85ejuwdM85I=" #import "AppDelegate.h" #import "View... 阅读全文
posted @ 2015-08-25 17:42 aprogrammer 阅读(2242) 评论(0) 推荐(0) 编辑
摘要: CocoaPods简介 每种语言发展到一个阶段,就会出现相应的依赖管理工具,例如Java语言的Maven,nodejs的npm。随着iOS开发者的增多,业界也出现了为iOS程序提供依赖管理的工具,它的名字叫做:CocoaPods。 CocoaPods项目的源码在Github上管理。该项目开始于2011年8月12日,经过多年发展,现在已经成为iOS开发事实上的依赖管理标准工具。开发iOS项目不可... 阅读全文
posted @ 2015-08-24 14:38 aprogrammer 阅读(118) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h" #import "SubViewController.h" @interface ViewController () { UIPageViewController *_pageViewController; NSMutableArray *_vcArray; NSInteger _currentPage; ... 阅读全文
posted @ 2015-08-21 12:11 aprogrammer 阅读(188) 评论(0) 推荐(0) 编辑
摘要: appDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScree... 阅读全文
posted @ 2015-08-20 16:54 aprogrammer 阅读(346) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页