2016年2月22日

ld: 6 duplicate symbols for architecture x86_64

摘要: 文件引入冲突,删除多余文件 阅读全文

posted @ 2016-02-22 16:32 XHShare 阅读(686) 评论(0) 推荐(0) 编辑

UILabel设置字体不同颜色

摘要: 1 self.title = @"For iOS 6 & later"; 2 NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String" 阅读全文

posted @ 2016-02-22 16:14 XHShare 阅读(282) 评论(0) 推荐(0) 编辑

2015年11月26日

Alamofire

摘要: // 基本使用 ,网络请求数据并转换成字典1.例:http://www.baidu.com/2.字典参数3.自定义字段,随意填4.与3自定义字段相符Alamofire.request(.POST, 1.你的URL字符串, parameters:2.你的参数字典).responseJSON { 3.(... 阅读全文

posted @ 2015-11-26 17:27 XHShare 阅读(193) 评论(0) 推荐(0) 编辑

swift下引入含c或者Object-c文件的头文件注意事项,持续更新

摘要: 如果你想引用头文件,且头文件里是引用.h的文件 ,你需要注意 1.在Build Settings下 找到Swift Compiler - Code Generation 下的 Objective-C Bridging Header 选项,并将其值设值为你的头文件路径 2.Apple LLVM 7... 阅读全文

posted @ 2015-11-26 10:04 XHShare 阅读(1075) 评论(0) 推荐(0) 编辑

2015年11月25日

UITableView分割线相关设置

摘要: // 设置颜色 tableView.separatorColor=[UIColorredColor];//设置端距,这里表示separator离左边和右边均80像素tableView.separatorInset=UIEdgeInsetsMake(0,80,0,80);// styletable... 阅读全文

posted @ 2015-11-25 16:33 XHShare 阅读(193) 评论(0) 推荐(0) 编辑

2015年11月23日

操作手册

该文被密码保护。 阅读全文

posted @ 2015-11-23 14:07 XHShare 阅读(11) 评论(0) 推荐(0) 编辑

2015年11月17日

Swift第二天学习

摘要: // 其实不知道这后面加个!号是什么意思@IBAction func buttonClick(sender: AnyObject) { let sou = Int(tf.text!) showLabel.text = String(Shape.init().jishus(so... 阅读全文

posted @ 2015-11-17 23:22 XHShare 阅读(204) 评论(0) 推荐(0) 编辑

iOS-NSData与NSDictionary的互相转换

摘要: 这里,将字典转换成NSData类型。有一点必须注意的,必须实现- (id)initWithCoder:(NSCoder *)aDecoder方法和- (void)encodeWithCoder:(NSCoder *)aCoder方法。+ (NSData *)returnDataWithDiction... 阅读全文

posted @ 2015-11-17 23:10 XHShare 阅读(1217) 评论(0) 推荐(0) 编辑

2015年11月16日

Swift第一天学习

摘要: override func viewDidLoad() { super.viewDidLoad() // 1. print(sumof(1,2,3,4,5,6,7,8,9,10)) // 2.show it showLabel.text = String(s... 阅读全文

posted @ 2015-11-16 23:38 XHShare 阅读(159) 评论(0) 推荐(0) 编辑

2015年11月15日

php之简单使用数据库

摘要: 1.数据库连接1.1用windows命令行链接数据库服务器几个DOS命令在DOS环境下命令后面没有分号,在MySQL环境下,命令后面有分号进入盘符:语法:盘符:进入盘符下的某个文件夹语法:cd路径上级目录:../进入根目录:/1.2链接MySQL服务器需要的参数Host主机-hUsername用户名... 阅读全文

posted @ 2015-11-15 22:45 XHShare 阅读(180) 评论(0) 推荐(0) 编辑

导航