본문 바로가기

UIButton 이미지 비율 조절하기 UIImageView의 경우 UIViewContentMode를 interface builder(IB)에서 조절할 수 있다.(Scale to fit, Aspect fit, Aspect fill, ...)하지만, UIButton에 이미지를 적용했을 경우 IB에서는 버튼 view 자체의 UIViewContentMode만 변경할 수 있는데, 코드로 다음과 같이 변경하면 된다. UIButton *button = [[UIButton ...]];[button.imageView setContentMode:UIViewContentModeScaleAspectFit] 위의 예제는 버튼의 이미지 모드를 Aspect fit으로 변경한 경우이다. 더보기
mysql에서 한글 설정 Mysql의 character_set_server 가 latin1으로 설정되어있을 때, 이를 utf8로 변경하기 위해서는윈도우의 경우 C:\Program Files\MySQL\MySQL Server 5.1의 my.ini파일을 , 리눅스의 경우 /etc/mysql의 my.cnf 파일을 열어 캐릭터 설정변수를 다음과 같이 추가/수정하면 된다.[client]default-character-set=utf8 [mysql]default-character-set=utf8 [mysqld]default-character-set=utf8 하지만, 특정 버전 이상의 mysql에서는 이렇게 설정하고 mysql을 재시작하면 구동에 실패하는 것을 볼 수 있는데, 이는 default-character-set 이라는 변수가 depr.. 더보기
AFNetworking POST 요청 보내기 참고 사이트: http://stackoverflow.com/questions/7623275/afnetworking-post-request This isn't the only way to do it, but requestWithMethod: is one way to do it:NSURL *url = [NSURL URLWithString:@"https://mysite.com/"]; AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url]; NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: height, @"user[height]", weight, @"user[weight].. 더보기