[mysql + php] login페이지 만들기 [mysql] 초반 tutorial에 관한 내용은 다음을 참고: http://dev.mysql.com/doc/refman/5.5/en/tutorial.html 이런저런 명령어들과 관련된 내용은 다음을 참고: http://www.pantz.org/software/mysql/mysqlcommands.html [php] login 화면 구성 관련된 내용: http://www.phpeasystep.com/phptu/6.html 더보기 [iPhone 개발] Push 구현(Mac에서 PHP로) Certificate와 관련해서는 다음을 참조: http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/ PHP 코드와 관련해서는 다음을 참조: Done. 더보기 UIView를 UIImage로 캡쳐하기 예제) #import - (UIImage*)captureView:(UIView *)view { CGRect rect = [[UIScreen mainScreen] bounds]; UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentContext(); [view.layer renderInContext:context]; UIImage *img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; } - (void)saveScreenshotToPhotosAlbum:(UIView *)view { UIImageWrit.. 더보기 이전 1 ··· 23 24 25 26 27 다음