回答:
[[NSDate date] timeIntervalSince1970];
エポックからの秒数をdoubleとして返します。小数部からミリ秒にアクセスできると確信しています。
[NSDate timeIntervalSinceReferenceDate]
安いです。(別の「エポック」を参照していますが、1970が必要な場合は定数を追加してくださいNSTimeIntervalSince1970
。)
これを相対的なタイミング(ゲームやアニメーションなど)に使用する場合は、CACurrentMediaTime()を使用します
double CurrentTime = CACurrentMediaTime();
これが推奨される方法です。NSDate
ネットワーク化された同期クロックから取得し、ネットワークに対して再同期するときに時々途切れます。
現在の絶対時間を秒単位で返します。
小数部分のみが必要な場合(アニメーションの同期時によく使用されます)、
let ct = CACurrentMediaTime().truncatingRemainder(dividingBy: 1)
iPhone 4SとiPad 3(リリースビルド)で他のすべての回答をベンチマークしました。CACurrentMediaTime
わずかなマージンでオーバーヘッドが最小になります。多くのユースケースでは問題にならないかもしれませんtimeIntervalSince1970
が、おそらくNSDate
インスタンス化のオーバーヘッドが原因で、他のものよりはるかに遅いです。
CACurrentMediaTime
オーバーヘッドを最小限に抑え、Quartz Frameworkの依存関係を追加してもかまわない場合は、お勧めします。またはgettimeofday
、移植性が優先される場合。
アイフォーン4エス
CACurrentMediaTime: 1.33 µs/call
gettimeofday: 1.38 µs/call
[NSDate timeIntervalSinceReferenceDate]: 1.45 µs/call
CFAbsoluteTimeGetCurrent: 1.48 µs/call
[[NSDate date] timeIntervalSince1970]: 4.93 µs/call
iPad 3
CACurrentMediaTime: 1.25 µs/call
gettimeofday: 1.33 µs/call
CFAbsoluteTimeGetCurrent: 1.34 µs/call
[NSDate timeIntervalSinceReferenceDate]: 1.37 µs/call
[[NSDate date] timeIntervalSince1970]: 3.47 µs/call
NSTimeIntervalSince1970
最速であるマクロが。
NSTimeIntervalSince1970
は1970-01-01 と「基準日」の間の秒数を表す定数(つまり2001-01-01)なので、常に978307200と等しくなります
Swiftでは関数を作成して次のようにすることができます
func getCurrentMillis()->Int64{
return Int64(NSDate().timeIntervalSince1970 * 1000)
}
var currentTime = getCurrentMillis()
でその作業罰金けれどもスウィフト3.0が、我々は、変更して使用することができますDate
クラスを代わりにNSDate
して3.0
Swift 3.0
func getCurrentMillis()->Int64 {
return Int64(Date().timeIntervalSince1970 * 1000)
}
var currentTime = getCurrentMillis()
これまでのところgettimeofday
、iOS(iPad)で間隔の評価(フレームレート、レンダリングフレームのタイミングなど)を実行したいときに、良い解決策を見つけました。
#include <sys/time.h>
struct timeval time;
gettimeofday(&time, NULL);
long millis = (time.tv_sec * 1000) + (time.tv_usec / 1000);
現在の日付のミリ秒を取得します。
Swift 4以降:
func currentTimeInMilliSeconds()-> Int
{
let currentDate = Date()
let since1970 = currentDate.timeIntervalSince1970
return Int(since1970 * 1000)
}
マッハベースのタイミング関数のラッパーを提供するCodeTimestampsについて知っておくと便利です。これにより、ナノ秒の解像度のタイミングデータが得られます-ミリ秒よりも1000000x正確です。はい、100万倍正確です。(プレフィックスは、ミリ、マイクロ、ナノで、それぞれ前の1000倍正確です。)CodeTimestampsが必要ない場合でも、コード(オープンソース)をチェックして、machを使用してタイミングデータを取得する方法を確認してください。これは、NSDateアプローチよりも高い精度が必要で、より高速なメソッド呼び出しが必要な場合に役立ちます。
http://eng.pulse.me/line-by-line-speed-analysis-for-ios-apps/
-fno-objc-arc
ARCを使用している場合は、おそらく必要です:)
// Timestamp after converting to milliseconds.
NSString * timeInMS = [NSString stringWithFormat:@"%lld", [@(floor([date timeIntervalSince1970] * 1000)) longLongValue]];
NSNumber
の正確な結果を含むオブジェクトが必要でした[[NSDate date] timeIntervalSince1970]
。この関数は何度も呼び出されたため、実際に作成する必要はありませんでした。NSDate
オブジェクトがないので、パフォーマンスはあまり。
だから、元の関数が私に与えていた形式を取得するには、これを試してください:
#include <sys/time.h>
struct timeval tv;
gettimeofday(&tv,NULL);
double perciseTimeStamp = tv.tv_sec + tv.tv_usec * 0.000001;
これはあなたとまったく同じ結果を与えるはずです [[NSDate date] timeIntervalSince1970]
絶対時間は、2001年1月1日00:00:00 GMTの絶対基準日を基準にした秒単位で測定されます。正の値は基準日より後の日付を表し、負の値は基準日より前の日付を表します。たとえば、絶対時間-32940326は、1999年12月16日17:54:34に相当します。この関数を繰り返し呼び出しても、単調に増加する結果は保証されません。システム時刻は、外部の時刻参照との同期のため、または明示的なユーザーによる時計の変更のために減少する場合があります。
これを試して :
NSDate * timestamp = [NSDate dateWithTimeIntervalSince1970:[[NSDate date] timeIntervalSince1970]];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss.SSS"];
NSString *newDateString = [dateFormatter stringFromDate:timestamp];
timestamp = (NSDate*)newDateString;
この例では、dateWithTimeIntervalSince1970がフォーマッタ@ "YYYY-MM-dd HH:mm:ss.SSS"と組み合わせて使用され、年、月、日、時間、分、秒、ミリ秒の時間を返します。 。例を参照してください:「2015-12-02 04:43:15.008」。NSStringを使用して、フォーマットが以前に書き込まれることを確認しました。
これは、基本的には@TristanLorachによって投稿されたものと同じ回答ですが、Swift 3用に再コーディングされています。
/// Method to get Unix-style time (Java variant), i.e., time since 1970 in milliseconds. This
/// copied from here: http://stackoverflow.com/a/24655601/253938 and here:
/// http://stackoverflow.com/a/7885923/253938
/// (This should give good performance according to this:
/// http://stackoverflow.com/a/12020300/253938 )
///
/// Note that it is possible that multiple calls to this method and computing the difference may
/// occasionally give problematic results, like an apparently negative interval or a major jump
/// forward in time. This is because system time occasionally gets updated due to synchronization
/// with a time source on the network (maybe "leap second"), or user setting the clock.
public static func currentTimeMillis() -> Int64 {
var darwinTime : timeval = timeval(tv_sec: 0, tv_usec: 0)
gettimeofday(&darwinTime, nil)
return (Int64(darwinTime.tv_sec) * 1000) + Int64(darwinTime.tv_usec / 1000)
}
func currentmicrotimeTimeMillis() -> Int64{
let nowDoublevaluseis = NSDate().timeIntervalSince1970
return Int64(nowDoublevaluseis*1000)
}
これは私がSwiftに使用したものです
var date = NSDate()
let currentTime = Int64(date.timeIntervalSince1970 * 1000)
print("Time in milliseconds is \(currentTime)")
このサイトを使用して正確性を確認しましたhttp://currentmillis.com/
NSTimeInterval time = ([[NSDate date] timeIntervalSince1970]); //double
long digits = (long)time; //first 10 digits
int decimalDigits = (int)(fmod(time, 1) * 1000); //3 missing digits
/*** long ***/
long timestamp = (digits * 1000) + decimalDigits;
/*** string ***/
NSString *timestampString = [NSString stringWithFormat:@"%ld%03d",digits ,decimalDigits];