반응형
IBOutlet UIWebView* _web;
IBOutlet UIViewController * _ViewWeb;
NSString *strurl = @"http://....... 링크 주소 ";
NSURL *url = [NSURL URLWithString: strurl];
NSURLRequest *request = [NSURLRequest requestWithURL: url];
[_web loadRequest:request];
self.view = _ViewWeb.view;
'ios aos 개발 > iPhone' 카테고리의 다른 글
[iPhone] UITableVIew 꼭 써야하는 함수 (0) | 2011.07.02 |
---|---|
[iPhone] UIAlertView 창 띄우기, 사라지게 하기 (0) | 2011.06.18 |
[iPhone] Uitableview 선택 해제 (0) | 2011.06.01 |
[iPhone] Thread 작성법 및 UI 변수와 데이터 주고 받기 (0) | 2011.05.23 |
[Iphone] 홈버튼 눌렀을시 종료 시키기 (0) | 2011.05.13 |