摘要:
1.配置XMPP(XMPPConfig.m)2.配置XMPPFramework框架3.创建单例类(XMPPManager.h/XMPPManager.m)管理器XMPPManager.m:#import "XMPPManager.h"#import "AppDelegate.h"//连接服务器的目的... 阅读全文
摘要:
//// DBHelper.h// LessonStoryBoard//// Created by袁冬冬on 15/10/29.// Copyright (c) 2015年袁冬冬. All rights reserved.//#import#import"FMDB.h"@interfaceDBHel... 阅读全文
摘要:
//// UIColor+Transformation.h// ContactApp//// Created by 袁冬冬 on 15/9/11.// Copyright (c) 2015年 . All rights reserved.//#import @interface UIColor (Tr... 阅读全文
摘要:
UIFontWeightUltraLight - 超细字体 UIFontWeightThin - 纤细字体 UIFontWeightLight - 亮字体 UIFontWeightRegular - 常规字体 UIFontWeightMedium - 介于Regular和Semibold之间 UIF 阅读全文
摘要:
1.安装cocoaPods 移除当前镜像,因为需要FQ跨域访问 001.gem source --remove https://rubygems.org/ 使用淘宝镜像安装 002.https://ruby.taobao.org/ added to sources 安装 003. sudo gem install -n /usr/local/bin cocoapods 或者 sudo ge... 阅读全文
摘要:
1 1.停止mysql服务 2 2.打开终端 3 2.1 输入 cd /usr/local/mysql/bin/ 4 2.2 打开安全模式 ./mysqld --skip-grant-tables 5 2.3 输入用户名 mysql -u root -p 6 2.4 进入user表 use user 7 2.5 修改密码 update user set passwo... 阅读全文
摘要:
.code { background: #fbedbb; border: #c0c0c0 1px solid; padding: 5px; margin: 0 40px 0 20px; font-family: Verdana,Helvetica, "微软雅黑" , Arial, "宋体" , sans-serif; } 1.拼单 Ali... 阅读全文
摘要:
在工程的info.plist文件中添加NSAPPTransportSecurity类型为Dictionary,在NSAPPTransportSecurity下添加NSAllowsArbitraryLoads类型为Boolean,置为YES 阅读全文
摘要:
UI界面iOS和Android 界面设计尺寸规范 http://www.alibuybuy.com/posts/85486.htmliPhone app界面设计尺寸规范 http://www.wufangbo.com/ios-iphone-app/iOS界面设计切图小结 http://www.apk... 阅读全文
摘要:
1、sqlite3存储数据的类型 NULL:标识一个NULL值 INTERGER:整数类型 REAL:浮点数 TEXT:字符串 BLOB:二进制数 2、 sqlite3存储数据的约束条件 Sqlite常用约束条件如下: PRIMARY KEY - 主键: 1)主键的值必须唯一,用于标识每一条记录,如学生的学号 2)主键同时也是一个索引,通过主键查找记录速度较快 3)主键如果是整数类型,该列的值... 阅读全文