How to covert the NSTimeInterval to NSString? I have
NSTimeInterval today = [[NSDate date] timeIntervalSince1970];
I have to give “today” as input as NSString.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
NSTimeInterval is just a double type so you can convert it to string using +stringWithFormat: method