当前位置:  编程技术>移动开发
本页文章导读:
    ▪Objective-c 依据某一个时区的时间获取特定时区的时间        Objective-c 根据某一个时区的时间获取特定时区的时间 //获取默认时区的时间字符串    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];    NSString .........
    ▪ 您的Xcode4是否变慢了,Xcode4性能提升小提示        你的Xcode4是否变慢了,Xcode4性能提升小提示   你的Xcode4是否变慢了,下面是我试验过的一些设置,Xcode4提升速度小提示   1. 重新安装。前提是保证彻底卸载,完全卸载使用下面命令:      .........
    ▪ 缄默卸载系统软件和第三方软件       静默卸载系统软件和第三方软件       一个个卸载软件,弹出卸载软件提示好麻烦,现在特作出下列方法,可以静默卸载 静默安装敬请期待。。。。             //下面3句是静默卸载.........

[1]Objective-c 依据某一个时区的时间获取特定时区的时间
    来源: 互联网  发布时间: 2014-02-18
Objective-c 根据某一个时区的时间获取特定时区的时间
//获取默认时区的时间字符串
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSString *nowStr = [formatter stringFromDate:[NSDate date]];
    NSLog(@"now time without setting TimeZone\n Default TimeZone: %@, Local Time %@",[formatter timeZone], nowStr);

    NSDate *nowGMT = [formatter dateFromString:nowStr];
    NSLog(@"当地时间->标准时间%@",nowGMT);
    NSLog(@"标准时间->当地时间%@",[formatter stringFromDate:nowGMT]);
 
      
    //获取特定时区的时间字符串
    [formatter setTimeZone:[NSTimeZone timeZoneWithName:@"America/Adak"]];
    NSString *AmericanNow = [formatter stringFromDate:[NSDate date]];  
    NSLog(@"now time with certain timezone: %@ Local Time %@", [formatter timeZone], AmericanNow);
     
    NSDate *AmericanGMT = [formatter dateFromString:AmericanNow];
    NSLog(@"特定时区的时间->标准时间%@",AmericanGMT);
    NSLog(@"标准时间->特定时区的时间%@",[formatter stringFromDate:AmericanGMT]);
     [formatter release];



/*将系统默认时间转换称某个特别时区的时间[color=darkred][/color][size=x-large][/size]
     Step1:获取系统默认时间的时间字符串
    
     */
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:SS"];
    NSString *defaultNowStr = [dateFormatter stringFromDate:[NSDate date]];
    NSLog(@"获取系统默认时间的时间字符串%@", defaultNowStr);
   
   
    /*
     Step2:获取标准时间
     */
    NSDate *dateGMT = [dateFormatter dateFromString:defaultNowStr];
    NSLog(@"获取标准时间%@",dateGMT);
   
    /*将标准时间转换称特定时区的时间
     */
    [dateFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"America/Adak"]];
    NSString *localDateStr = [dateFormatter stringFromDate:dateGMT];
    NSLog(@"将标准时间转换称特定时区的时间%@",localDateStr);
  
    [dateFormatter release];

//将某个时区的特定时间转化称另一个时区的对应时间
/*
    该例子将时区Asia/Tokyo的2011-12-30 16:45:00转化为
    时区America/Adak的相应时间
*/
    NSDateFormatter *dateFormatter2 = [[NSDateFormatter alloc] init];
    [dateFormatter2 setDateFormat:@"yyyy-MM-dd HH:mm:SS"];
    NSString *fromTimeZone = [[NSString alloc] initWithString:@"Asia/Tokyo"];
    NSString *date_fromTimeZone = [[NSString alloc] initWithString:@"2011-12-30 16:45:00"];
   
    [dateFormatter2 setTimeZone:[NSTimeZone timeZoneWithName:fromTimeZone]];
    NSDate *dateOfGMT = [dateFormatter2 dateFromString:date_fromTimeZone];
    [fromTimeZone release];
    [date_fromTimeZone release];
   
    NSString *toTimeZone = [[NSString alloc] initWithString:@"America/Adak"];
    [dateFormatter2 setTimeZone:[NSTimeZone timeZoneWithName:toTimeZone]];
    NSString *dateStrDst = [dateFormatter2 stringFromDate:dateOfGMT];
    NSLog(@"dateStrDst %@", dateStrDst);
    [toTimeZone release];
   
   
     [dateFormatter2 release];


    
[2] 您的Xcode4是否变慢了,Xcode4性能提升小提示
    来源: 互联网  发布时间: 2014-02-18
你的Xcode4是否变慢了,Xcode4性能提升小提示

 

你的Xcode4是否变慢了,下面是我试验过的一些设置,Xcode4提升速度小提示

 

1. 重新安装。前提是保证彻底卸载,完全卸载使用下面命令:

      sudo /Developer/Library/uninstall-devtools --mode=all

      逼急了才用的方法

 

2. 使用32位模式运行Xcode

      在Finder里,找到/Developer/Application/XCode.app,右击,菜单里选择Get Info,然后选中Open in 32-bit mode

 

3. 删除project.xcworkspace文件

      在Finder里,右击工程文件XXX.xcodeproj,菜单里选择Show Package Contents,打开以后可以看到project.xcworkspace文件,直接删除就可以了

 

4. 清空所有仓库

      在XCode里,菜单Window -> Organizer - Repositories - 清空所有Respositories

 

5. 清空所有工程

      在XCode里,菜单Window -> Organizer - Projects - 清空所有Projects

 

6. 关闭Remote Status

      在XCode里,菜单File -> Source Control -> Hide Remote Status

      效果不大

 

7. 彻底关掉SVN

      删掉svn plugin貌似会造成崩溃,有人建议将svn域名解析改成无效地址,例如1.2.3.4  svn.myhost.com

      此招不实用

 

8. 禁用Live Issues

      在XCode里,菜单XCode -> Preferences -> General -> Issues,取消选中Show live issues

      效果还可以

 

9. Xcode - Preference - General - Disable Auto-Save (prompt only) and both Live Issues (In Editors, In Issue Navigator) 

      Disable Auto-Save这个找不到地方设置,哪位给个提示

      Disable Live Issues这个上面提到了

 

10. Closed Utility Panel and Quick Help Panel

这个可以随便切换,问题不大,有人说提升很大,我是XCode4.2,感觉不出来

 

11. 如果你频繁运行的话,可以禁用调试

    Edit Scheme -> Run XXX.app -> Info -> Debugger 选择None。想调时候的话可以随时打开

 

iOS技术群:176078249

    
[3] 缄默卸载系统软件和第三方软件
    来源: 互联网  发布时间: 2014-02-18
静默卸载系统软件和第三方软件

      一个个卸载软件,弹出卸载软件提示好麻烦,现在特作出下列方法,可以静默卸载

静默安装敬请期待。。。。

 

          //下面3句是静默卸载系统软件命令
            String busybox="mount -o remount rw /system";
         String chmod="chmod 777 /system/app/HtcTwitter.apk";
         uninstallapk="rm -r /system/app/HtcTwitter.apk";
        
         //下面3句是静默卸载第三方软件命令
         String busybox1="mount -o remount rw /data";
         String chmod1="chmod 777 /data/app/com.yingyonghui.market-2.apk";
         uninstallapk1="pm uninstall com.yingyonghui.market";
        
         chmodApk(busybox1,chmod1);

 

 

 

  /*
     * 对要卸载的apk赋予权限
     */
    public void chmodApk(String busybox ,String chmod)
    {
     try {
    
       Process process = null;
   DataOutputStream os = null;

   process = Runtime.getRuntime().exec("su");
   os = new DataOutputStream(process.getOutputStream());
   os.writeBytes(busybox);
        os.flush();
        
        os.writeBytes(chmod);
        os.flush();
        
        os.close();
       } catch (Exception ex) {
           ex.printStackTrace();
       }
    }
   
   
    /*
     * 卸载apk
     */
    public void uninstallApk(String uninstallapk)
    {
     try {
        
       Process process = null;
   DataOutputStream os = null;
   process = Runtime.getRuntime().exec("su");
   os = new DataOutputStream(process.getOutputStream());
        os.writeBytes(uninstallapk);
        os.flush();
        
        os.close();
       } catch (Exception ex) {
           ex.printStackTrace();
       }
    }

1 楼 fanfansss 2012-02-01  
在android2.3.3中,你的代码不起作用。
2 楼 心雨心 2012-03-12  
你说的不好用是?

    
最新技术文章:
▪Android开发之登录验证实例教程
c/c++ iis7站长之家
▪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