NSDate तुलना स्विफ्ट का उपयोग कर


153

मैं एक ऐप पर काम कर रहा हूं, जिसे होमवर्क के लिए नियत तारीख की जांच करने की आवश्यकता है। मैं जानना चाहता हूं कि क्या नियत तारीख अगले सप्ताह के भीतर है, और यदि यह है तो कार्रवाई करें।
अधिकांश दस्तावेज़ जो मुझे मिल सकते हैं, वे ऑब्जेक्टिव-सी में हैं और मैं यह नहीं समझ सकता कि इसे स्विफ्ट में कैसे किया जाए। सहायता के लिए धन्यवाद!!


2
स्विफ्ट में एक तिथि वर्ग नहीं है जो आप उद्देश्य सी NSDate वर्ग का उपयोग करते हैं - इसलिए आपने सही प्रलेखन पाया है
mmmmmm

समय घटक के बिना NSDates की तुलना करने की संभावित डुप्लिकेट । बहुत अच्छे जवाब हैं।
jww

संबंधित उत्तर: stackoverflow.com/questions/29652771/…
jkdev

2
स्विफ्ट 3 में एक Dateवर्ग है। इसे पाला जाता है NSDate, लेकिन इसे कहा जाता है Date
बॉलपॉइंटबैन

जवाबों:


188

मुझे कोड को अधिक पठनीय बनाने के लिए एक्सटेंशन का उपयोग करना पसंद है। यहां कुछ NSDate एक्सटेंशन दिए गए हैं जो आपके कोड को साफ करने में मदद कर सकते हैं और इसे समझना आसान बना सकते हैं। मैंने इसे एक shareCode.swift फ़ाइल में डाला:

extension NSDate {

    func isGreaterThanDate(dateToCompare: NSDate) -> Bool {
        //Declare Variables
        var isGreater = false

        //Compare Values
        if self.compare(dateToCompare as Date) == ComparisonResult.orderedDescending {
            isGreater = true
        }

        //Return Result
        return isGreater
    }

    func isLessThanDate(dateToCompare: NSDate) -> Bool {
        //Declare Variables
        var isLess = false

        //Compare Values
        if self.compare(dateToCompare as Date) == ComparisonResult.orderedAscending {
            isLess = true
        }

        //Return Result
        return isLess
    }

    func equalToDate(dateToCompare: NSDate) -> Bool {
        //Declare Variables
        var isEqualTo = false

        //Compare Values
        if self.compare(dateToCompare as Date) == ComparisonResult.orderedSame {
            isEqualTo = true
        }

        //Return Result
        return isEqualTo
    }

    func addDays(daysToAdd: Int) -> NSDate {
        let secondsInDays: TimeInterval = Double(daysToAdd) * 60 * 60 * 24
        let dateWithDaysAdded: NSDate = self.addingTimeInterval(secondsInDays)

        //Return Result
        return dateWithDaysAdded
    }

    func addHours(hoursToAdd: Int) -> NSDate {
        let secondsInHours: TimeInterval = Double(hoursToAdd) * 60 * 60
        let dateWithHoursAdded: NSDate = self.addingTimeInterval(secondsInHours)

        //Return Result
        return dateWithHoursAdded
    }
}

अब अगर आप ऐसा कुछ कर सकते हैं:

//Get Current Date/Time
var currentDateTime = NSDate()

//Get Reminder Date (which is Due date minus 7 days lets say)
var reminderDate = dueDate.addDays(-7)

//Check if reminderDate is Greater than Right now
if(reminderDate.isGreaterThanDate(currentDateTime)) {
    //Do Something...
}

28
आपको अपना कोड सरल करना चाहिए। return self.compare(dateToCompare) == NSComparisonResult.OrderedDescending
ओलाव गौसेकर

5
isEqualToDate Apple द्वारा भी प्रदान किया गया है। यह एप्पल द्वारा परिभाषित एक के साथ घोषणा संघर्ष है।
शेमस एस -

4
हर रोज 24 घंटे नहीं है
लियो डबस

9
यह उत्तर भयानक है और इसे कभी स्वीकार नहीं किया जाना चाहिए। आपके द्वारा बनाई गई तारीखों में कभी समय अंतराल न जोड़ें। यही कारण NSDateComponentsहै कि मौजूद है। बहुत सारे किनारे मामले हैं जिन्हें ठीक से संभाल नहीं किया जा रहा है और यह कोई मतलब नहीं है कि इसके अनुरूप नहीं Comparableहै NSDate। मैं जॉन के समाधान का उपयोग करने की सलाह दूंगा
fpg1503

3
एक बेहतर उपाय NSDate को समतुल्य, तुलनीय बनाना है, तो आप बस इतना कर सकते हैंdate1 < date2
aryaxt

209

आप समर्थन करना चाहते हैं ==, <, >, <=, या >=के लिए NSDateहै, तो आप सिर्फ यह कहीं घोषित करने के लिए है:

public func ==(lhs: NSDate, rhs: NSDate) -> Bool {
    return lhs === rhs || lhs.compare(rhs) == .OrderedSame
}

public func <(lhs: NSDate, rhs: NSDate) -> Bool {
    return lhs.compare(rhs) == .OrderedAscending
}

extension NSDate: Comparable { }

2
@Isuru प्रोटोकॉल Comparableका वंशज है, Equatableइसलिए आपको दोनों को अनुरूप घोषित करने की आवश्यकता नहीं होनी चाहिए।
जॉन एस्ट्रोपिया

2
बस उत्सुक क्यों यह डिफ़ॉल्ट रूप से निर्मित नहीं है ?!
डेफफेक्शन

3
@dVaffection में ऑब्जेक्टिव-सी (जहां NSDate और दोस्तों को घोषित किया गया है), यदि आप का उपयोग करते हुए ==, <और >, आदि की तुलना करते हैं, तो आपको स्मृति में उनके पते की तुलना का परिणाम मिल जाएगा, न कि उनके वास्तविक मूल्य की तुलना। स्विफ्ट में, उन्हें अभी भी संदर्भ के रूप में माना जाता है, इसलिए मुझे लगता है कि विकल्प या तो (1) बाय-पॉइंटर-तुलनाओं को बनाए रखें क्योंकि वे ओबजेक में हैं, या (2) तुलनाओं के लिए कार्यान्वयन प्रदान नहीं करके भ्रम को खत्म करते हैं।
जॉन एस्ट्रोपिया

2
इस दृष्टिकोण का एक अतिरिक्त लाभ यह है कि Array.maxElement(), आदि स्वचालित रूप से NSDates के सरणियों के लिए उपलब्ध है।
pr1001

1
@MarcioCruz यह केवल एक स्विफ्ट आवश्यकता है जो सभी ऑपरेटर कार्यान्वयन वैश्विक दायरे में होनी चाहिए। यहाँ चर्चा देखें: stackoverflow.com/questions/35246003/…
जॉन एस्ट्रोपिया

54

इस तरह आप स्विफ्ट में दो NSDates की तुलना करते हैं, मैंने सिर्फ Xcode के खेल के मैदान में इसका परीक्षण किया:

if date1.compare(date2) == NSComparisonResult.OrderedDescending
{
    NSLog("date1 after date2");
} else if date1.compare(date2) == NSComparisonResult.OrderedAscending
{
    NSLog("date1 before date2");
} else
{
    NSLog("dates are equal");
}

इसलिए यह जांचने के लिए कि क्या कोई तारीख dueDateअभी से एक सप्ताह के भीतर है:

let dueDate=...

let calendar = NSCalendar.currentCalendar()
let comps = NSDateComponents()
comps.day = 7
let date2 = calendar.dateByAddingComponents(comps, toDate: NSDate(), options: NSCalendarOptions.allZeros)

if dueDate.compare(date2!) == NSComparisonResult.OrderedDescending
{
    NSLog("not due within a week");
} else if dueDate.compare(date2!) == NSComparisonResult.OrderedAscending
{
    NSLog("due within a week");
} else
{
    NSLog("due in exactly a week (to the second, this will rarely happen in practice)");
}

2
आदेश देने का क्या मतलब है कि तारीख 1> तारीख 2?
हेनरी ओसनैलैन-मिलर

1
हां, @ हेनरीकोसेनलेन-मिलर।
पूर्ववत

46

मैंने हमेशा इसे एक पंक्ति में किया:

let greater = date1.timeIntervalSince1970 < date2.timeIntervalSince1970

अभी भी ifब्लॉक में पठनीय है


12

स्विफ्ट 3 Dateमें, Foundationअब संरचना Comparableप्रोटोकॉल को लागू करती है। इसलिए, Swift3 NSDateद्वारा पिछले Swift2 दृष्टिकोण को सुपरसीड किया गया है Date

/**
 `Date` represents a single point in time.

 A `Date` is independent of a particular calendar or time zone. To represent a `Date` to a user, you must interpret it in the context of a `Calendar`.
*/
public struct Date : ReferenceConvertible, Comparable, Equatable {

    // .... more         

    /**
        Returns the interval between the receiver and another given date.

        - Parameter another: The date with which to compare the receiver.

        - Returns: The interval between the receiver and the `another` parameter. If the receiver is earlier than `anotherDate`, the return value is negative. If `anotherDate` is `nil`, the results are undefined.

        - SeeAlso: `timeIntervalSince1970`
        - SeeAlso: `timeIntervalSinceNow`
        - SeeAlso: `timeIntervalSinceReferenceDate`
        */
    public func timeIntervalSince(_ date: Date) -> TimeInterval

   // .... more 

    /// Returns true if the two `Date` values represent the same point in time.
    public static func ==(lhs: Date, rhs: Date) -> Bool

    /// Returns true if the left hand `Date` is earlier in time than the right hand `Date`.
    public static func <(lhs: Date, rhs: Date) -> Bool

    /// Returns true if the left hand `Date` is later in time than the right hand `Date`.
    public static func >(lhs: Date, rhs: Date) -> Bool

    /// Returns a `Date` with a specified amount of time added to it.
    public static func +(lhs: Date, rhs: TimeInterval) -> Date

    /// Returns a `Date` with a specified amount of time subtracted from it.
    public static func -(lhs: Date, rhs: TimeInterval) -> Date

  // .... more
}

ध्यान दें ...

Swift3 Dateमें struct, इसका मतलब है कि यह है value type। यह NSDateहै class, यह है reference type

// Swift3
let a = Date()
let b = a //< `b` will copy `a`. 

// So, the addresses between `a` and `b` are different.
// `Date` is some kind different with `NSDate`.

6
extension NSDate {

    // MARK: - Dates comparison

    func isGreaterThanDate(dateToCompare: NSDate) -> Bool {

        return self.compare(dateToCompare) == NSComparisonResult.OrderedDescending
    }

    func isLessThanDate(dateToCompare: NSDate) -> Bool {

        return self.compare(dateToCompare) == NSComparisonResult.OrderedAscending
    }

    func equalToDate(dateToCompare: NSDate) -> Bool {

        return self.compare(dateToCompare) == NSComparisonResult.OrderedSame
    }
}

6

यदि आप स्विफ्ट 3 पर ग्रैन्युलैरिटी (बस उसी दिन या वर्ष आदि) के साथ तारीखों की तुलना करना चाहते हैं।

func compareDate(date1:NSDate, date2:NSDate, toUnitGranularity: NSCalendar.Unit) -> Bool {

 let order = NSCalendar.current.compare(date1 as Date, to: date2 as Date, toGranularity: .day)
 switch order {
 case .orderedSame:
   return true
 default:
   return false
 }
}

अन्य कैलेंडर तुलनाओं के लिए .day से बदल जाते हैं;

.year .month .day .hour .minute .second


5

स्विफ्ट पहले से ही लागू होने की तारीख की तुलना करें बस डेट 1> डेट 2 इत्यादि का उपयोग करें।

/// Returns true if the two `Date` values represent the same point in time.
public static func ==(lhs: Date, rhs: Date) -> Bool

/// Returns true if the left hand `Date` is earlier in time than the right hand `Date`.
public static func <(lhs: Date, rhs: Date) -> Bool

/// Returns true if the left hand `Date` is later in time than the right hand `Date`.
public static func >(lhs: Date, rhs: Date) -> Bool

/// Returns a `Date` with a specified amount of time added to it.
public static func +(lhs: Date, rhs: TimeInterval) -> Date

/// Returns a `Date` with a specified amount of time subtracted from it.
public static func -(lhs: Date, rhs: TimeInterval) -> Date

/// Add a `TimeInterval` to a `Date`.
///
/// - warning: This only adjusts an absolute value. If you wish to add calendrical concepts like hours, days, months then you must use a `Calendar`. That will take into account complexities like daylight saving time, months with different numbers of days, and more.
public static func +=(lhs: inout Date, rhs: TimeInterval)

/// Subtract a `TimeInterval` from a `Date`.
///
/// - warning: This only adjusts an absolute value. If you wish to add calendrical concepts like hours, days, months then you must use a `Calendar`. That will take into account complexities like daylight saving time, months with different numbers of days, and more.
public static func -=(lhs: inout Date, rhs: TimeInterval)

4

स्विफ्ट 3 में, दिनांक तुलनात्मक है इसलिए हम सीधे तारीखों की तुलना कर सकते हैं जैसे

let date1 = Date()
let date2 = Date()

let isGreater = date1 > date2
print(isGreater)

let isEqual = date1 == date2
print(isEqual)

या वैकल्पिक रूप से

let result = date1.compare(date2)
switch result {
    case .OrderedAscending     :   print("date 1 is earlier than date 2")
    case .OrderedDescending    :   print("date 1 is later than date 2")
    case .OrderedSame          :   print("two dates are the same")
}

extensionडेट पर बनाने का बेहतर तरीका

extension Date {

  fun isGreater(than date: Date) -> Bool {
    return self > date 
  }

  func isSmaller(than date: Date) -> Bool {
    return self < date
  }

  func isEqual(to date: Date) -> Bool {
    return self == date
  }

}

प्रयोग let isGreater = date1.isGreater(than: date2)


3

इस कार्य ने मेरे लिए यह तुलना करने के लिए काम किया कि क्या एक तारीख (आरंभ) समाप्ति के बाद थी जहां दोनों को एनएसडी संस्करण के रूप में परिभाषित किया गया था:

if startDate.compare(endDate as Date) == ComparisonResult.orderedDescending

2

में कार्यान्वयन Swift

let documentsPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as NSString
let files = NSFileManager.defaultManager().contentsOfDirectoryAtPath(documentsPath, error: nil)

let filesAndProperties = NSMutableArray()
for file in files! {

    let filePath = documentsPath.stringByAppendingString(file as NSString)
    let properties = NSFileManager.defaultManager().attributesOfItemAtPath(filePath, error: nil)
    let modDate = properties![NSFileModificationDate] as NSDate
    filesAndProperties.addObject(NSDictionary(objectsAndKeys: file, "path", modDate, "lastModDate"))
}

let sortedFiles = filesAndProperties.sortedArrayUsingComparator({
    (path1, path2) -> NSComparisonResult in

    var comp = (path1.objectForKey("lastModDate") as NSDate).compare(path2.objectForKey("lastModDate") as NSDate)
    if comp == .OrderedDescending {

        comp = .OrderedAscending
    } else if comp == .OrderedAscending {

        comp = .OrderedDescending
    }

    return comp
})

2
var dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd"
let dateData: String = dateFormatter.stringFromDate(date1)
let testDate: String = dateFormatter.stringFromDate(date2)
print(dateData == testDate)

1
someArray.sort({($0.dateAdded?.timeIntervalSinceReferenceDate)! < ($1.dateAdded?.timeIntervalSinceReferenceDate)!})

dateAdded मेरी वस्तु में एक NSDate चर है

class MyClass {
    let dateAdded: NSDate?
}

1

हमारे पास वर्तमान समय की जांच करने के लिए परिदृश्य है b / w दो बार (दो तिथियां)। उदाहरण के लिए, मैं क्लिनिक (अस्पताल) के खुलने और बंद होने के समय के बीच वर्तमान झूठ की जांच करना चाहता हूं।

सरल कोड का उपयोग करें।

      NSDate * now = [NSDate date];
        NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
        [outputFormatter setDateFormat:@"HH:mm:ss"];

        //current time
        NSString *currentTimeString = [outputFormatter stringFromDate:now];
        NSDate *dateCurrent = [outputFormatter dateFromString:currentTimeString];


        NSString *timeStart = @"09:00:00";
        NSString *timeEnd = @"22:00:00";

        NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
        [formatter setDateFormat:@"HH:mm:ss"];

        NSDate *dateStart= [formatter timeStart];
        NSDate *dateEnd = [formatter timeEnd];
        NSComparisonResult result = [dateCurrent compare:dateStart];
        NSComparisonResult resultSecond = [date2 compare:dateEnd];

if(result == NSOrderedDescending && resultSecond == NSOrderedDescending)
        {
            NSLog(@"current time lies in starting and end time");
    }else {
            NSLog(@"current time doesn't lie in starting and end time");
        }

1

स्विफ्ट 3 के लिए, आप नीचे दिए गए फ़ंक्शन का उपयोग दो तिथियों के बीच तुलना करने के लिए कर सकते हैं।

func compareDate(dateInitial:Date, dateFinal:Date) -> Bool {
    let order = Calendar.current.compare(dateInitial, to: dateFinal, toGranularity: .day)
    switch order {
    case .orderedSame:
        return true
    default:
        return false
    }
}

जिस पर आप अपनी तुलना को लागू करना चाहते हैं बाधाओं के अनुसार परिवर्तन किया जा सकता है।


1

साशज़ पर विस्तार करने के लिए

IOS 8 और ऊपर स्विफ्ट करें जब आपको केवल बड़ी या छोटी तारीख की तुलना में अधिक की आवश्यकता होती है। उदाहरण के लिए यह उसी दिन या पिछले दिन है, ...

नोट: टाइमजोन को कभी न भूलें। कैलेंडर टाइमज़ोन में एक डिफ़ॉल्ट है, लेकिन यदि आप डिफ़ॉल्ट को पसंद नहीं करते हैं, तो आपको स्वयं को टाइमज़ोन सेट करना होगा। यह जानने के लिए कि यह किस दिन है, आपको यह जानने की जरूरत है कि आप किस समय में पूछ रहे हैं।

extension Date {
    func compareTo(date: Date, toGranularity: Calendar.Component ) -> ComparisonResult  {
        var cal = Calendar.current
        cal.timeZone = TimeZone(identifier: "Europe/Paris")!
        return cal.compare(self, to: date, toGranularity: toGranularity)
        }
    }

इसे इस तरह उपयोग करें:

if thisDate.compareTo(date: Date(), toGranularity: .day) == .orderedDescending {
// thisDate is a previous day
}

अधिक जटिल उदाहरण का। सरणी में सभी तिथियों को ढूंढें और फ़िल्टर करें, जो उसी दिन से हैं जैसे "findThisDay":

let formatter = DateFormatter()
formatter.timeZone = TimeZone(identifier: "Europe/Paris")
formatter.dateFormat = "yyyy/MM/dd HH:mm:ss"

let findThisDay = formatter.date(from: "2018/11/05 08:11:08")!
_ = [
    formatter.date(from: "2018/12/05 08:08:08")!, 
    formatter.date(from: "2018/11/05 08:11:08")!,
    formatter.date(from: "2018/11/05 11:08:22")!,
    formatter.date(from: "2018/11/05 22:08:22")!,
    formatter.date(from: "2018/11/05 08:08:22")!,
    formatter.date(from: "2018/11/07 08:08:22")!,
    ]
    .filter{ findThisDay.compareTo(date: $0 , toGranularity: .day) == .orderedSame }
    .map { print(formatter.string(from: $0)) }
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.