Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created November 8, 2018 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/b8f96d19a6b552c8f6267f0fdf26aac1 to your computer and use it in GitHub Desktop.
Save codingwithsara/b8f96d19a6b552c8f6267f0fdf26aac1 to your computer and use it in GitHub Desktop.
[ iOS ] How to get date from NSDate
//
// ViewController.h
// NSDate
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *yearLabel;
@property (weak, nonatomic) IBOutlet UILabel *monthLabel;
@property (weak, nonatomic) IBOutlet UILabel *dateLabel;
@property (weak, nonatomic) IBOutlet UILabel *dayLabel;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment