//获取默认时区的时间字符串
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];
你的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句是静默卸载系统软件命令
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();
}
}