当前位置:  编程技术>移动开发
本页文章导读:
    ▪phonegap回到键等设置        phonegap返回键等设置     // PhoneGap加载完毕         checkConnection();         document.addEventListener("searchbutton", eventSearchButton, false); //搜索键     function onConfirm(button) {        .........
    ▪ CocoaPods 装配使用        CocoaPods 安装使用 CocoaPods是一个负责管理iOS项目中第三方开源代码的工具。CocoaPods项目的源码在Github上管理。该项目开始于2011年8月12日,经过一年多的发展,现在已经超过1000次提交,并且持.........
    ▪ 内存储器泄露,优化收集       内存泄露,优化收集 Android杂谈--内存泄露(1)--contentView缓存使用与ListView优化 http://www.cnblogs.com/loulijun/archive/2012/04/10/2437888.html android GC内存泄露问题 http://www.cnblogs.com/devinzhang/archive/2012/01/28.........

[1]phonegap回到键等设置
    来源: 互联网  发布时间: 2014-02-18
phonegap返回键等设置
<pre><script type="text/javascript" charset="utf-8">
    document.addEventListener("deviceready", onDeviceReady, false);
    // PhoneGap加载完毕
    function onDeviceReady() {
        //按钮事件
        checkConnection();
        document.addEventListener("backbutton", eventBackButton, false); //返回键
        document.addEventListener("menubutton", eventMenuButton, false); //菜单键
        document.addEventListener("searchbutton", eventSearchButton, false); //搜索键
 
    }
    function onConfirm(button) {
 
        if (button == '1') {
 
            navigator.app.exitApp();
        } else {
 
        }
 
    }
    //返回键
    function eventBackButton() {
        navigator.notification.confirm('确定退出cfxxi?', // 显示信息
        onConfirm, // 按下按钮后触发的回调函数,返回按下按钮的索引
        '退出应用', // 标题
        '确定,取消' // 按钮标签
        );
 
    }
    //菜单键
    function eventMenuButton() {
        //alert('点击了 菜单 按钮!');
    }
 
    //搜索键
    function eventSearchButton() {
 
        //window.plugins.ToastPlugin.show_short('点击了 搜索 按钮!');
    }
 
    function checkConnection() {
        var networkState = navigator.network.connection.type;       
 
        var states = {};
        states[Connection.UNKNOWN]  = 'Unknown connection';
        states[Connection.ETHERNET] = 'Ethernet connection';
        states[Connection.WIFI]     = 'WiFi connection';
        states[Connection.CELL_2G]  = 'Cell 2G connection';
        states[Connection.CELL_3G]  = 'Cell 3G connection';
        states[Connection.CELL_4G]  = 'Cell 4G connection';
        states[Connection.NONE]     = 'No network connection';
        //alert(states[networkState]);
        if(states[networkState]=='No network connection'||typeof states[networkState] == "undefined")
        {
 
            Ext.Msg.alert('警告', '应用需要连接网络获得数据,请打开网络.', function(){
                navigator.device.exitApp();
            });
        }
    };
</script></pre>

    
[2] CocoaPods 装配使用
    来源: 互联网  发布时间: 2014-02-18
CocoaPods 安装使用

CocoaPods是一个负责管理iOS项目中第三方开源代码的工具。CocoaPods项目的源码在Github上管理。该项目开始于2011年8月12日,经过一年多的发展,现在已经超过1000次提交,并且持续保持活跃更新。开发iOS项目不可避免地要使用第三方开源库,CocoaPods的出现使得我们可以节省设置和更新第三方开源库的时间。

安装

安装方式异常简单, Mac下都自带ruby,使用ruby的gem命令即可下载安装:
$ gem install cocoapods
$ pod setup


使用:
Open Terminal, and navigate to the folder where your project is. Type the following:
touch Podfile
open -e Podfile


TextEdit should open up showing an empty file. You just created the pod file and opened it! Ready to add some content to the empty pod file?
Copy and paste the following lines into the TextEdit window:
platform :ios

pod 'AFNetworking', '0.9.1'

Now, save the file and close TextEdit, going back to terminal. Ready to configure your project?
Issue the following command via Terminal:
pod install



You should see output similar to the following:
Updating spec repo `master'
Installing AFNetworking (0.9.1)
Generating support files


It might also tell you something like this:
[!] From now on use `CocoaPodsExample.xcworkspace'


If you type ls now (or browse the project folder using Finder), you’ll see that CocoaPods created a Pods folder – where it stores all dependencies – and CocoaPodsExample.xcworkspace.

VERY IMPORTANT!
From now on, as the command-line warning mentioned, you must always open the workspace (CocoaPodsExample.xcworkspace) and not the project!


现在,你的所有第三方库都已经下载完成并且设置好了编译参数和依赖,你只需要记住如下2点即可:

使用CocoaPods生成的 .xcworkspace 文件来打开工程,而不是以前的 .xcodeproj 文件。
每次更改了Podfile文件,你需要重新执行一次pod install命令


    
[3] 内存储器泄露,优化收集
    来源: 互联网  发布时间: 2014-02-18
内存泄露,优化收集
Android杂谈--内存泄露(1)--contentView缓存使用与ListView优化 
http://www.cnblogs.com/loulijun/archive/2012/04/10/2437888.html 

android GC内存泄露问题 
http://www.cnblogs.com/devinzhang/archive/2012/01/28/2330738.html Android内存泄露 如何避免优化

 

http://wangleyiang.iteye.com/blog/1714448


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3