码迷,mamicode.com
首页 > 移动开发
在ios7真机上和iOS6模拟器上运行是好的,而在iOS6真机上运行却报错
在ios7真机上和iOS6模拟器上运行是好的,而在iOS6真机上运行却报错解决方法:或是都设置为yes。。Build Active Architecture Only的意思是只生成适应的指令集
分类:移动开发   时间:2014-04-30 14:39:37    阅读次数:447
CSAPP 读书笔记 - 2.31练习题
根据等式(2-14)假如w = 4 数值范围在-8 ~ 7之间 2^w = 16x = 5, y = 4的情况下面x + y = 9 >=2 ^(w-1) 属于第一种情况sum = x + y = 9- 2^w = –7sum – x == y?-7 – 4 = – 11 属于第三种情况 负溢出su...
分类:移动开发   时间:2014-04-30 17:08:03    阅读次数:443
IOS 学习参考
IOS 开发http://code4app.com/ios/%E5%AE%9E%E6%97%B6%E6%9B%B4%E6%96%B0%E7%9A%84%E6%9B%B2%E7%BA%BF%E5%9B%BE/5100f9e06803fa686c000000http://www.cnblogs.com/...
分类:移动开发   时间:2014-04-30 17:18:59    阅读次数:459
ThinkAndroid 1.1版本的简介及基本使用方法
ThinkAndroid 交流平台ThinkAndroid简介目前ThinkAndroid主要有以下模块:使用ThinkAndroid快速开发框架需要有以下权限:Activity必须继承TAActivityThinkAndroid使用方法:MVC模块ioc模块使用方法:数据库模块Http模块使用方法...
分类:移动开发   时间:2014-04-30 17:28:28    阅读次数:833
iOS socket Stream 服务器端 及 客户端 演示
iOS socket Stream测试环境,mac osx 10.8一:建立服务器端 由于mac osx10.8 已经集成 python2和 Twisted,我们可以直接利用此,构建一个简单的socket 服务器 如下测试一个简单的聊天 socket 并,定义,加入聊天时发送:iam:用户名 发送信...
分类:移动开发   时间:2014-04-30 17:47:28    阅读次数:738
图文教程:在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
[转]SSIS Execute SQL Task : Mapping Parameters And Result Sets
本文转自:http://www.programmersedge.com/post/2013/03/05/ssis-execute-sql-task-mapping-parameters-and-result-sets.aspx#.U18_6PmSxBkA very common scenario i...
分类:移动开发   时间:2014-04-30 18:34:53    阅读次数:548
Android 8款开源游戏引擎
1、Angle (2D Java)Angle是一款专为Android平台设计的,敏捷且适合快速开发的2D游戏引擎,基于OpenGLES技术开发。该引擎全部用Java代码编写,并且可以根据自己的需要替换里面的实现,缺陷在于文档不足,而且下载的代码中仅仅包含有少量的示例教程。最低运行环境要求不详。项目地...
分类:移动开发   时间:2014-04-30 18:45:51    阅读次数:538
手机宝令
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
Server.MapPath()
./当前目录/网站主目录../上层目录~/网站虚拟目录如果当前的网站目录为E:\wwwroot应用程序虚拟目录为E:\wwwroot\company浏览的页面路径为E:\wwwroot\company\news\show.asp在show.asp页面中使用Server.MapPath("./")返回...
分类:移动开发   时间:2014-04-30 19:34:51    阅读次数:400
Android开发之使用广播监听网络状态变化
我们经常需要判断网络状态的变化,如有无网络,所以需要监听网络状态的变化,比如网络断开,网络连接给予友好提示。如何监听网络状态的变化呢,最近工作中需要用到这个,于是就用广播机制来实现了网络状态的监听。使用广播机制来监听网络状态主要涉及到以下几点:1.需要自己编写个网络广播接收器,该接收器继承Broad...
分类:移动开发   时间:2014-04-30 19:38:53    阅读次数:487
百度移动版的url编码解码代码
1 var decode = function(m) { 2 try { 3 m = decodeURIComponent(m); 4 } catch(e) {} 5 var s = m.split("%"); 6 if (s.length > 1)...
分类:移动开发   时间:2014-04-30 20:11:33    阅读次数:590
[Android学习系列16]Android把php输出的json加载到listview
首先写个php脚本输出json,注意,还要输出回车,方便android的bufferreader读取一行bookid = $id; $this->bookname = $name; $this->bookinfo = $info; } ...
分类:移动开发   时间:2014-04-30 20:19:42    阅读次数:684
Android使用AndEngine创建第一个程序
首先要把andengine.jar复制到libs文件夹里01package com.hu.anden;0203import org.anddev.andengine.engine.Engine;04import org.anddev.andengine.engine.camera.Camera;05...
分类:移动开发   时间:2014-04-30 20:37:13    阅读次数:527
A Book Store Application Using AngularJS and Asp.Net Web Api
There are many examples out there demonstrating how AngularJS and Web API can be used together but almost all of them are in MVC, so I tried to implem...
分类:移动开发   时间:2014-04-30 21:19:35    阅读次数:625
[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
Advice for Applying Machine Learning & Machine Learning System Design----- Stanford Machine Learning(by Andrew NG)Course Notes
AdviceforapplyingmachinelearningDeciding what to try next 现在我们已学习了线性回归、逻辑回归、神经网络等机器学习算法,接下来我们要做的是高效地利用这些算法去解决实际问题,尽量不要把时间浪费在没有多大意义的尝试上,Advice for appl...
分类:移动开发   时间:2014-04-29 12:11:47    阅读次数:756
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!