摘要: 前言:iOS的开发语言objective-c,它的真实面目是它不是真正的面向对象语言,而抽象理解为此而已。其实它就是C+,有个公式可以很好地诠释那就是OC = C + Runtime; 接下来我们就好好讲讲在Runtime下的objc-class。准备资料,objc4-646/runtime。一:C... 阅读全文
posted @ 2015-11-26 11:06 Coding梦 阅读(272) 评论(0) 推荐(0)
摘要: 一、SQL语句如果要在程序运行过程中操作数据库中的数据,那得先学会使用SQL语句1.什么是SQLSQL(structured query language):结构化查询语言SQL是一种对关系型数据库中的数据进行定义和操作的语言SQL语言简洁,语法简单,好学好用2.什么是SQL语句使用SQL语言编写出... 阅读全文
posted @ 2015-10-06 15:58 Coding梦 阅读(97) 评论(0) 推荐(0)
摘要: - (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. UIWebView *webview = [[UIWebView alloc] initWith... 阅读全文
posted @ 2015-09-08 11:05 Coding梦 阅读(441) 评论(0) 推荐(0)
摘要: 最近打开Xcode编译、运行开发的程序,虽然都success,但是一直有个warning:target specifies product type 'com.apple.product-type.bundle.unit-test', but there's no such product typ... 阅读全文
posted @ 2015-08-26 17:20 Coding梦 阅读(247) 评论(0) 推荐(0)
摘要: 在浏览器中可以通过JS代码打开QQ并弹出聊天界面,一般作为客服QQ使用。而在移动端腾讯貌似没有公布提供类似API,但是却可以使用schema模式来启动手机QQ。 以下为具体代码: Android: iOS: 浏览器: 阅读全文
posted @ 2015-08-17 15:07 Coding梦 阅读(355) 评论(0) 推荐(0)
摘要: Core Animation is a graphics rendering and animation infrastructure available on both iOS and OS X that you use to animate the views and other visual ... 阅读全文
posted @ 2015-08-13 16:32 Coding梦 阅读(105) 评论(0) 推荐(0)