上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: FMDB 是基于 SQLite 封装的 面向对对象(OC) 的API.FMDB是iOS平台的SQLite数据库框架FMDB以OC的方式封装了SQLite的C语言APIFMDB 需要libsqlite3.0 系统库的支持///////////////////////// 实现代码 /////////... 阅读全文
posted @ 2015-09-29 16:18 guangleijia 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 一. 数据存储类型:1. plist (NSArray, NSDictionary);2. Preference(偏好设置\NSUserDefault);3. NSCoding (NSKeyedArchiver\NSKeyUnarchiver); ---- 存储小数据, 读取不是很方便4. SQLi... 阅读全文
posted @ 2015-09-29 01:45 guangleijia 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1. 在ios8 之后, 后台能够自动播放音乐, 我自己测试过(不需要配置);2. 在ios7中, 配置方法:2.1 在AppDelegate.m的,applicationDidEnterBackground方法中, 配置/*** 进入后台 --- 继续播放*/- (void)application... 阅读全文
posted @ 2015-09-25 19:25 guangleijia 阅读(166) 评论(0) 推荐(0) 编辑
摘要: App Store审核指南中文版(2014.10.11更新)2014-11-03程序猿苹果在9月3日对App Store审核指南进行了重大更新,新添加了扩展、HealthKit、HomeKit以及TestFlight相关内容。9月10日新品发布会之后,苹果更新了App Store审核指南,添加App... 阅读全文
posted @ 2015-09-25 19:16 guangleijia 阅读(264) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/dwarven/article/details/42388711 阅读全文
posted @ 2015-09-25 10:33 guangleijia 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 音频格式硬件解码软件解码AACYESYESALACYESYESHE-AACYESiLBCYESIMA4YESLinea PCMYESMP3YESYESμ-law and a-lawYESCAFYESYES注意:硬件解码器一次只能对一个音频文件解码。在实际应用中通常使用非压缩的音频格式(AIFF)或... 阅读全文
posted @ 2015-09-24 22:27 guangleijia 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 当我从Xcode 6.3切换到Xcode6.4的时候,因为我是mac上安装了两个不同的版本,现在把Xcode 6.3卸掉了。现在再次运行pod install命令的时候,提示如下错误:Updating local specs repositoriesxcrun: error: active deve... 阅读全文
posted @ 2015-09-24 17:08 guangleijia 阅读(194) 评论(1) 推荐(0) 编辑
摘要: /*** CoreBluetooth ---- BLE** @ 蓝牙4.0 + iBeacon --- 室内导航(超市)*/#import "ViewController.h"#import @interface ViewController ()/** 中心管理者 ***/@property (n... 阅读全文
posted @ 2015-09-24 17:05 guangleijia 阅读(214) 评论(0) 推荐(0) 编辑
摘要: niOS中提供了4个框架用于实现蓝牙连接GameKit.framework(用法简单)ü只能用于iOS设备之间的连接,多用于游戏(比如五子棋对战),从iOS7开始过期pMultipeerConnectivity.frameworkü只能用于iOS设备之间的连接,从iOS7开始引入,主要用于文件共享(... 阅读全文
posted @ 2015-09-24 15:39 guangleijia 阅读(150) 评论(0) 推荐(0) 编辑
摘要: /*** CoreMotion**/#import "ViewController.h"#import // 导入框架@interface ViewController ()@property (nonatomic, strong) CMMotionManager *mgr;// 必须搞成全局的@... 阅读全文
posted @ 2015-09-24 11:43 guangleijia 阅读(189) 评论(0) 推荐(0) 编辑
摘要: ///很简单, 只需要在AppDelegate中写上一下代码, 就可以实现摇一摇功能.#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIAppli... 阅读全文
posted @ 2015-09-24 10:59 guangleijia 阅读(184) 评论(0) 推荐(0) 编辑
摘要: // ios 4 之前 UIAccelerometer// ios 5 #import "ViewController.h"//#import @interface ViewController ()@end@implementation ViewController- (void)viewDidL... 阅读全文
posted @ 2015-09-23 18:42 guangleijia 阅读(201) 评论(0) 推荐(0) 编辑
摘要: // 距离传感器// 温度传感器// 磁力传感器// 光传感器// 湿度传感器// 陀螺仪 -- 导航, 赛车游戏(角速度传感器)// 运动传感器 - 加速度传感器 -- 摇一摇, 计步器//#import "ViewController.h"@interface ViewController ()... 阅读全文
posted @ 2015-09-23 18:23 guangleijia 阅读(209) 评论(0) 推荐(0) 编辑
摘要: java -version 显示java 版本sudo su - root切换身份cd /usr/local/openfire进入openfire目录cd bin/进入 binvim openfire.sh——— 修改java路径打开openfire.sh - 配置java路径pwd ——— "/S... 阅读全文
posted @ 2015-09-23 11:58 guangleijia 阅读(187) 评论(0) 推荐(0) 编辑
摘要: /*** 第三方分享** @param void 友盟分享* @param shareSDK* @param 百度分享*/#import "ViewController.h"#import @interface ViewController ()@end@implementation ViewCon... 阅读全文
posted @ 2015-09-23 11:14 guangleijia 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1. 应用场景:使用第三方登录 : 需要用户授权, 授权完成后, 返回应用应用推广, 积分墙支付宝, 第三方支付, 淘宝, 电话费充值2. 应用程序跳转 ----- 实际上是调用其他应用的URLtarget --- info --- URL Type +3.应用跳转 代码 // UIAppl... 阅读全文
posted @ 2015-09-23 00:52 guangleijia 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 官方文档 ---http://developer.baidu.com/map/index.php?title=iossdk/guide/key百度地图在2.5之前, 不支持64位手机端.[注意] 首先成为百度开发者, 然后创建应用,设置bundleID--http://developer.baidu... 阅读全文
posted @ 2015-09-22 22:54 guangleijia 阅读(388) 评论(0) 推荐(0) 编辑
摘要: #import "PPViewController.h"#import #import "PPAnnotation.h"@interface PPViewController ()/*** 编码对象*/@property (nonatomic, strong) CLGeocoder *geocode... 阅读全文
posted @ 2015-09-22 16:52 guangleijia 阅读(621) 评论(2) 推荐(1) 编辑
摘要: 导航:可以将需要导航位置丢给系统自带的App进行导航发送网络请求到公司服务器, 获取导航数据, 自己手动绘制导航利用三方SDK进行导航(百度)#import "ViewController.h"#import #import "MBProgressHUD+MJ.h"@interface ViewCo... 阅读全文
posted @ 2015-09-22 14:46 guangleijia 阅读(229) 评论(0) 推荐(0) 编辑
摘要: #import #import @interface PPAnnotation : NSObject/*** 大头针的位置*/@property (nonatomic, assign) CLLocationCoordinate2D coordinate;/*** 大头针标题*/@property (... 阅读全文
posted @ 2015-09-22 12:04 guangleijia 阅读(331) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页