본문 바로가기

UITableViewController를 UIViewController로 바꿀 때 참고 다음의 링크에서 참조함http://www.spriing.co.uk/blog/2011/uitableviewcontroller-is-a-waste-of-space/ UITableViewController is a waste of spaceposted by Mark Corbyn | 26/03/2011 | Mobile Apps | 1 comment The UITableViewController generated by Xcode is far too restrictive, here’s why… In every app we’ve developed that has required a UITableView, the data has come from a remote source. Of course, this means w.. 더보기
[mysql] 비밀번호 관련 1. 초기 mysql root 패스워드 설정하기 mysql 서버에 패스워드 없이 로그인 하게되면 서버에 만들어진 데이터베이스나 테이블 기타 이곳에 저장된 자료가 외부인에게 노출될 수 있다. 따라서 이러한 보안을 목적으로 root 패스워드를 지정하면 mysql 서버를 안전하게 보호할 수 있다. mysql> use mysql; mysql> update user set password=password('123456') where user='root'; Query OK, 2 rows affected (0.03 sec) Rows matched: 2 Changed: 2 Warnings: 0 mysql> flush privileges; select host, user, password from user; +-----.. 더보기
ASIHTTP를 이용한 request/response 홈페이지: http://allseeing-i.com/ASIHTTPRequest/ 여기 들어가면 웬만한 구현방법에 대한 설명이 다 나와있음. ASIHTTPRequest란 Xcode 개발시 사용할 수 있는 wrapper로 사용자가 따로 설정해야 하는 복잡한 부분을 많이 줄여준 느낌이다. (사실 따로 뭘 설정해줘야 되는지는 잘 모른다) 더보기