上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: /*** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Could not instantiate class named MKMapView'** @ 如果st... 阅读全文
posted @ 2015-09-21 23:15 guangleijia 阅读(425) 评论(0) 推荐(0) 编辑
摘要: https://github.com/intuit/LocationManager#import "ViewController.h"#import "INTULocationManager.h"/*** ios 8以上 需要在plist中配置 NSLocationWhenInUseUsageDes... 阅读全文
posted @ 2015-09-21 22:03 guangleijia 阅读(423) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h"#import "MBProgressHUD+MJ.h"#import @interface ViewController ()@property (nonatomic, strong) CLGeocoder *geocoder; // 编码对象@... 阅读全文
posted @ 2015-09-21 19:05 guangleijia 阅读(173) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h"#import @interface ViewController ()/** 地理编码对象 ***/@property (nonatomic, strong) CLGeocoder *geocoder;@property (weak, nonat... 阅读全文
posted @ 2015-09-21 18:15 guangleijia 阅读(235) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h"#import @interface ViewController ()/** 定位管理者对象 ***/@property (nonatomic, strong) CLLocationManager *mgr;@property (nonatomi... 阅读全文
posted @ 2015-09-21 16:47 guangleijia 阅读(243) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h"#import @interface ViewController ()// 定位管理对象@property (nonatomic, strong) CLLocationManager *mgr;// 指南针@property (nonatomic... 阅读全文
posted @ 2015-09-21 16:00 guangleijia 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h"#import @interface ViewController ()/** 1. 定位管理者对象 ***/@property (nonatomic, strong) CLLocationManager *mgr;/** 上一次的位置 ***/@... 阅读全文
posted @ 2015-09-21 14:40 guangleijia 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1. 导入框架 , 引入头文件 import ;2. 创建管理者对象 (strong)#import "ViewController.h"@interface ViewController ()/** 定位管理者 ***/@property (nonatomic, strong) CLLocatio... 阅读全文
posted @ 2015-09-21 12:15 guangleijia 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1. 术语$ svn checkout URL [PATH] ----- 下载服务器所有文件 (clone) 到本地[path] --- 只需一次$ svn checkout http://127.0.0.1/weibo --username = jiaguanglei --password = ... 阅读全文
posted @ 2015-09-18 21:23 guangleijia 阅读(298) 评论(4) 推荐(0) 编辑
摘要: 1. 注册github账号; 2. 配置SSH keys; 点击setting, 配置 SSH keys Generating SSH keys 检查本地的 SSH keys: a> 在用户目录下, $ ls -al ~/.ssh b> 如果文件夹不存在, 创建一个 $mkdir .ssh b1> 阅读全文
posted @ 2015-09-18 16:09 guangleijia 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 0918再次补充 阅读全文
posted @ 2015-09-17 18:29 guangleijia 阅读(164) 评论(1) 推荐(0) 编辑
摘要: 1. 差异iPhone是手机,iPad、iPad Mini是平板电脑iPhone和iPad开发的区别屏幕的尺寸 \分辨率UI元素的排布 \设计键盘API屏幕方向的支持… …2. iPad屏幕尺寸设备尺寸像素点iPhone \ iPhone 3G \ iPhone 3GS3.5 inch320 x 4... 阅读全文
posted @ 2015-09-17 10:57 guangleijia 阅读(459) 评论(0) 推荐(0) 编辑
摘要: xmpp 是一个即时通讯的传输协议, 传入的数据都是xml基本模块开发自动连接模块 -- 网络断开后, 自动连接电子名片模块 -- 获取个人信息, 保存到数据库头像模块 -- 获取头像的图片花名册模块 -- 获取好友列表, 保存到数据库消息模块 -- 消息模块xmpp是通过socket开发的,基于T... 阅读全文
posted @ 2015-09-16 23:23 guangleijia 阅读(129) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-09-16 10:17 guangleijia 阅读(8) 评论(0) 推荐(0) 编辑
摘要: CoreData: error: (522) I/O error for database at /Users/jiaguanglei/Library/Developer/CoreSimulator/Devices/03506F42-5847-4FF1-A222-3AE06B0990E0/data/... 阅读全文
posted @ 2015-09-15 01:14 guangleijia 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 在 Mac 文件的文件名前添加 . 即可使文件隐藏也可以在终端里面能用命令来控制显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles YES隐藏Mac隐藏文件的命令:defaults write com.apple.finder... 阅读全文
posted @ 2015-09-15 01:13 guangleijia 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 对于Apache Tomcat 估计很多童鞋都会,那么今天就简单说下在mac上进行tomcat的安装; 第一步:下载Tomcat 这里Himi下载的tomcat version:7.0.27直接上下载地址:http://tomcat.apache.org/download-70.cgi直接下载如... 阅读全文
posted @ 2015-09-10 11:47 guangleijia 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 一、了解XMPP协议(标准)XMPP 即时通讯协议SGIP 短信网关协议 这手机发短信移动支付和网页支付0x23232[0,1] 0x23232 0x23232 0x23232只有协议,必须会有协议文档二、环境配置1.安装mysql2.修改mysql的帐户的密码》sqlite(移动平台) ,是没有密... 阅读全文
posted @ 2015-09-09 11:25 guangleijia 阅读(448) 评论(0) 推荐(0) 编辑
摘要: Mac 配置 apache php 详细解说一.开启apache 并切改变引导1.打开终端 输入:sudo apachectl start 回车,关闭终端2.打开浏览器,地址栏输入: 127.0.0.1 回车 就可以看到一个内容为“It works!”的页面 3.改变引导,修改/WebServe... 阅读全文
posted @ 2015-09-08 18:10 guangleijia 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 一. 打开CoreData的SQL语句输出开关1. 打开product, 点击editScheme2. 点击argument, 在argumentPaDssed ON Launch 中添加两项1> -com.apple.CoreData.SQLDebug2>1 阅读全文
posted @ 2015-09-08 16:23 guangleijia 阅读(116) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页