Suppose today is January 20th, 2014. If I use NSDataDetector to extract a date from the string "tomorrow at 4pm", I'll get 2014-01-21T16:00. Great.
But, suppose I want NSDataDetector to pretend the current date is January 14th, 2014. This way, when I parse "tomorrow at 4pm", I'll get 2014-01-15T16:00. If I change the system time on the device, I get what I want. But, is there a way to specify this programmatically?
Thanks.
For testing purposes, you can use a technique called method swizzling. The trick is to replace one of
NSDate
's methods with one of your own.If you replace
+[NSDate date]
with your own implementation,NSDataDetector
will consider 'now' to be any time you specify.Swizzling system class methods in production code is risky. The following example code ignores the Encapsulation of
NSDataDetector
by taking advantage of knowing that it usesNSDate
privately. One of many potential pitfalls would be if the next update to iOS changes the internals of NSDataDetector, your production app may stop working correctly for your end-users unexpectedly.Add a category to
NSDate
like this (an aside: if you are building libraries to run on the device, you may need to specify the -all_load linker flag to load categories from libs):Here is it being used:
Which outputs: