码迷,mamicode.com
首页 >  
搜索关键字:ios github    ( 92755个结果
[Android学习系列15]下拉刷新列表实现动态加载
使用google官方的SwipeRefreshLayout参考:http://blog.csdn.net/easyer2012/article/details/22857807http://stormzhang.github.io/android/2014/03/29/android-swipere...
分类:移动开发   时间:2014-04-30 21:33:22    阅读次数:634
AutoLayout
AutoLayout这个2012年iOS出来的新东东,当然现在不算新东东了。如是说:AutoLayout是一种基于约束的,描述性的布局系统。 Auto Layout Is a Constraint-Based, Descriptive Layout System.关键词:基于约束 - 和以往定义fr...
分类:其他好文   时间:2014-04-30 20:12:49    阅读次数:456
手机宝令
otp (one-time password)http://tools.ietf.org/html/rfc4226相应协议unified push serverhttps://github.com/aerogear/aerogear-unifiedpush-server
分类:移动开发   时间:2014-04-30 18:51:28    阅读次数:500
windows下git命令的使用
一、写在前面关于git,出于自己的爱好,前段时间玩了一下,也自己上网查了一下资料,现简单记录一下,以备查看。当然,本文并不是介绍配置git服务器的文章,而是以github服务器作为git的远程仓库服务器。二、安装windows下使用git,需要安装msysGit,下载地址是https://code....
分类:Windows程序   时间:2014-04-30 18:32:17    阅读次数:776
图文教程:在Mac上搭建Titanium的iOS开发环境
http://mobile.51cto.com/web-317170_all.htm跨平台开发工具Titanium的兴起之路:HTML 5是最大威胁比较Titanium和PhoneGap两大iOS移动应用开发框架跨平台移动Web开发工具 Titanium Mobile简介图文教程:在Windows ...
分类:移动开发   时间:2014-04-30 18:14:39    阅读次数:585
UIWebView和Js交互
在日常的ios项目开发中,我们经常会在原生应用中嵌入web页面,通常我们只是进行一个展示,没有其它的一些功能。但是也有一些项目中需要web页面中的html和native进行交互。但是ios sdk 并没有相应的方法来让我们做到js代码来和原生进行交互。但是webview在加载前会调用其一个dele....
分类:Web程序   时间:2014-04-29 11:15:45    阅读次数:431
SKProductsRequest ios 7不调用delegate
在iOS7中,内购只能在真机上才会调用- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response协议方法若是用模拟器,它回调用- (void)reques...
分类:移动开发   时间:2014-04-29 11:12:46    阅读次数:1565
IOS 使用dispatch_once 创建单例
+ (instantClass *)sharedClient {static instantClass *_sharedClient = nil;static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{_sharedClient = ...
分类:移动开发   时间:2014-04-29 10:27:47    阅读次数:419
ios Toll-Free Bridging
有一些数据类型是能够在 Core Foundation Framework 和 Foundation Framework 之间交换使用的。这意味着,对于同一个数据类型,你既可以将其作为参数传入 Core Foundation 函数,也可以将其作为接收者对其发送 Objective-C 消息(即调用O...
分类:移动开发   时间:2014-04-29 10:22:46    阅读次数:689
IOS 定位 单例
+ (SCLocationController *)sharedController{ static SCLocationController *sharedController = nil; static dispatch_once_t onceToken; dispatc...
分类:移动开发   时间:2014-04-29 10:12:46    阅读次数:534
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!