심플하게 wevView를 통해 연결 하기. //해당 URL주소 @"http://twitter.com/intent/tweet?source=webclient&text=" @"http://www.facebook.com/sharer.php?u=" @"http://me2day.net/posts/new?new_post[body]=" NSString *snsUrl = [NSString stringWithFormat:@"%@%@", @"SNS주소", [@"전송할 텍스트 또는 URL" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; NSURL *url = [NSURL URLWithString:snsUrl]; [webView loadRequest:[NS..
1. NSDate to unix timestampNSDate의 timeIntervalSince1970를 이용하시면 됩니다.예: 현재의 시간을 unix timestamp로 변환하기int timestamp = [[NSDate date] timeIntervalSince1970]; 2. unix timestamp to NSDateNSDate의 dateWithTimeIntervalSince1970:를 이용하시면 됩니다.예: 2009-06-26 10:51:39의 unix timestamp를 NSDate로 변환하기NSDate *date = [NSDate dateWithTimeIntervalSince1970:1245981099]; 3. NSDate to date component이건 좀 복잡한데.. 년/월/일 시/분/..