iOS 5 編程(2)-開關(UISwitch)、分段控制項(UISegmentedControl)和Web視圖(UIWebView)控制項的使用

來源:互聯網
上載者:User

本範例iOS App示範了如下控制項的使用,從第三方網站擷取特定URL的Web內容,並顯示在UIWebView控制項中。

  • 開關(UISwitch)
  • 分段控制項(UISegmentedControl)
  • Web視圖(UIWebView)

該範例 iPhone App運行效果如下所示:

 

下面是iOS App擷取特定URL Web內容的主要代碼:

- (IBAction)getFlower:(id)sender {
NSURL *imageURL;
NSURL *detailURL;
NSString *imageURLString;
NSString *detailURLString;
NSString *color;
int sessionID;

color =[self.colorChoice titleForSegmentAtIndex:self.colorChoice.selectedSegmentIndex];
sessionID = random() % 50000;

imageURLString = [[NSString alloc] initWithFormat:
@"http://www.floraphotographs.com/showrandomios.php?color=%@&session=%d", [dicColor objectForKey:color], sessionID];
detailURLString = [[NSString alloc] initWithFormat:
@"http://www.floraphotographs.com/detailios.php?session=%d", sessionID];

imageURL = [[NSURL alloc] initWithString:imageURLString];
detailURL = [[NSURL alloc] initWithString:detailURLString];

[self.flowerView loadRequest:[NSURLRequest requestWithURL:imageURL]];
[self.flowerDetailView loadRequest:[NSURLRequest requestWithURL:detailURL]];

self.flowerDetailView.backgroundColor = [UIColor clearColor];
}

 

上述代碼簡要解釋一下,其基本過程是:

  1. 首先建立一個NSString 字串,也就是web網址;
  2. 根據web網址,建立一個NSURL執行個體,調用initWithString方法;
  3. 再建立一個可將其傳遞給Web視圖進行載入的NSURLRequest對象,調用requestWithURL方法;
  4. 最後,將該請求傳遞給Web 視圖的loadRequest 方法,該方法將接管工作,並處理載入過程,在Web 視圖中呈現網頁內容。

下載本範例App的原始碼。

iOS 5 編程(1)-映像視圖、滑塊和步進控制項的使用

iOS 5 編程(3)-建立模態切換,多情境和切換(Segue)

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.