Medium
Which method of NSDate allows you to get the current date and time?
Author: Smart&SoftStatus: PublishedQuestion passed 23 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Objective C
1
What is the keyword to use to avoid retain cycles in Objective-C?0
What is the Objective-C keyword to make a property private?0
How to throw an exception in Objective-C0
What is the superclass of UIViewController?0
What is the output of the following Objective-C code?
@interface MyClass : NSObject
- (void)doSomething;
@end
@implementation MyClass
- (void)doSomething {
NSLog(@"%@", self);
}
@end
int main(int argc, const char * argv[]) {
MyClass *myClass = [[MyClass alloc] init];
[myClass doSomething];
return 0;
}