下面的代码给了我当前的时间。 但它并没有告诉任何有关毫秒的事情。 public static String getCurrentTimeStamp() { SimpleDateFormat sdfDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//dd/MM/yyyy Date now = new Date(); String strDate = sdfDate.format(now); return strDate; } 我以格式2009-09-22 16:47:08 (YYYY-MM-DD HH:MI:Sec)获得date。 但我想以2009-09-22 16:47:08.128 ((YYYY-MM-DD HH:MI:Sec.Ms))格式检索当前时间。 128表示毫秒。 SimpleTextFormat将正常工作。 这里最低的时间单位是秒,但是我怎样才能得到毫秒呢?
我想旋转一个UIImageView 360度,并看了几个在线教程。 如果没有UIView停止,或者跳到一个新的位置,我都不能让他们工作。 我怎样才能做到这一点? 我试过的最新的事情是: [UIView animateWithDuration:1.0 delay:0.0 options:0 animations:^{ imageToMove.transform = CGAffineTransformMakeRotation(M_PI); } completion:^(BOOL finished){ NSLog(@"Done!"); }]; 但是,如果我使用2 * pi,它根本不会移动(因为它是相同的位置)。 如果我试图做pi(180度),它可以工作,但如果我再次调用方法,它会向后旋转。 编辑 : [UIView animateWithDuration:1.0 delay:0.0 options:0 animations:^{ [UIView setAnimationRepeatCount:HUGE_VALF]; [UIView setAnimationBeginsFromCurrentState:YES]; imageToMove.transform = CGAffineTransformMakeRotation(M_PI); } completion:^(BOOL finished){ NSLog(@"Done!"); }]; 也不起作用。 它进入180度,暂停一秒钟,然后重置到0度,然后重新开始。
我刚刚升级到xcode 4.0,我不能再部署到iPhone,我得到一个苹果Mach-O链接器错误,但它仍然适用于模拟器。 Ld /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Intermediates/iParcel.build/Debug-iphoneos/iParcel.build/Objects-normal/armv7/iParcel normal armv7 cd /Users/yveswheeler/iParcel setenv IPHONEOS_DEPLOYMENT_TARGET 3.2 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-4.2 -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk -L/Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos -F/Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos -filelist /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Intermediates/iParcel.build/Debug-iphoneos/iParcel.build/Objects-normal/armv7/iParcel.LinkFileList -dead_strip -all_load -ObjC -lxml2 -miphoneos-version-min=3.2 -framework UIKit -framework CoreGraphics -framework QuartzCore /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20Core.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20Network.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20Style.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20UI.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20UICommon.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20UINavigator.a -framework AddressBook -lz.1.2.3 -framework Foundation -framework CFNetwork -framework MobileCoreServices -framework SystemConfiguration -framework MessageUI -framework […]
我试图编译我的程序,它返回这个错误: usr/bin/ld: cannot find -l<nameOfTheLibrary> 在我的makefile中,我使用命令g++并链接到我的库,这是一个符号链接到我的库位于另一个目录。 有没有可以添加的选项使其工作?
我怎样才能从数组中删除一个对象? 我希望从“someArray”中删除包含名称“Kristian”的对象。 例如: someArray = [{name:"Kristian", lines:"2,5,10"}, {name:"John", lines:"1,19,26,96"}]; 我想实现: someArray = [{name:"John", lines:"1,19,26,96"}];
可能重复: 我如何衡量一个函数运行多久? 我有一个I / O占用时间的方法,将数据从一个位置复制到另一个位置。 计算执行时间的最好和最真实的方法是什么? Thread ? Timer ? Stopwatch ? 任何其他解决scheme 我想要最精确的一个,尽可能简短。
你知道如果你是一个系统的pipe理用户,你可以右键点击说一个批处理脚本,并以pipe理员身份运行,而无需inputpipe理员密码? 我想知道如何用PowerShell脚本来做到这一点。 我不想input密码; 我只是想模仿右键单击以pipe理员身份运行的方法。 我目前阅读的所有内容都要求您提供pipe理员密码。
我尝试了Backbone.js,我试图调用一个远程API,所以我需要能够覆盖Backbone.sync,因为我理解的文档 。 在文档本身中没有如何做到这一点的例子,似乎没有一个谷歌的骨干群…有人可以指出一个例子这样做吗?
我想获得当前正在运行的batch file的名称, 而没有文件扩展名。 由于这个链接 ,我有扩展名的文件名…但在batch file中做一个子string的最佳方法是什么? 还是有另一种方式来获得文件名W / O扩展名? 在这种情况下假设3个字母的扩展是安全的。
我在使用SQLite的Android应用程序上处理date方面遇到了一些麻烦。 我有几个问题: 我应该使用什么types的存储dateSQLite(文本,整数,…)? 鉴于存储date的最佳方式,我如何使用ContentValues正确存储它? 从SQLite数据库检索date的最佳方法是什么? 如何在SQLite上进行SQLselect,按datesorting结果?