[webView setBackgroundColor:[UIColor clearColor]];
[webView setOpaque:NO];


http://stackoverflow.com/questions/8667150/uiwebview-background-is-set-to-clear-color-but-it-is-not-transparent

Posted by tenn
,



CGSize textViewSize = [text sizeWithFont:[UIFont fontWithName:@"Marker Felt" size:20] 
                       constrainedToSize:CGSizeMake(WIDHT_OF_VIEW, FLT_MAX) 
                       lineBreakMode:UILineBreakModeTailTruncation];



http://stackoverflow.com/questions/7401445/how-to-set-height-of-uitextview-according-to-its-content-in-objective-c

Posted by tenn
,

** 페이스북


프로필이미지 구하기

http://graph.facebook.com/[facebook id]/picture?type=large


small    50x50

normal    100x100

large    180x180



** 트위터

http://a0.twimg.com/profile_images/3441454604/cffb106a40dd3b574fdc6b6424944c34_normal.jpeg

url의 normal을 bigger나 mini로 바꾸어주면 이미지를 얻을수 있다.


bigger : 73 x 73

normal : 48 x48

mini : 24 x 24

Posted by tenn
,