iPhone開發應用之顯示無按鈕警告框

來源:互聯網
上載者:User

iPhone開發應用之顯示無按鈕警告框是本文要介紹的內容,主要講述的是警告框案例的實現,我們一起來看詳細內容講解。如果要顯示一個不需要使用者互動的非同步資訊,可以建立一個不帶按鈕的UIAlertView。

一般無按鈕的警告框有一個特點,它不會自動消失。因此,我們在做完事情之後要收到的讓警告框消失。可以調用此方法

 
  1. – dismissWithClickedButtonIndex:animated: 

下面的代碼是建立一個無按鈕的UIAlertView,讓其在3s之後消失。

 
  1. UIAlertView *baseAlert;  
  2.  
  3. - (void) action: (UIBarButtonItem *) item  
  4. {  
  5.     baseAlert = [[[UIAlertView alloc] initWithTitle:@"Please Wait" message:nil delegate:self 
  6. cancelButtonTitle:nil otherButtonTitles: nil] autorelease];  
  7.     [baseAlert show];  
  8.  
  9. // Create and add the activity indicator  
  10. UIActivityIndicatorView *aiv = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];  
  11. aiv.center = CGPointMake(baseAlert.bounds.size.width / 2.0f, baseAlert.bounds.size.height - 40.0f);  
  12. [aiv startAnimating];  
  13. [baseAlert addSubview:aiv];  
  14. [aiv release];  
  15.  
  16.  
  17. // Auto dismiss after 3 seconds  
  18. [self performSelector:@selector(performDismiss) withObject:nil afterDelay:3.0f];  
  19. }  
  20.  
  21. - (void) performDismiss  
  22. {  
  23.     [baseAlert dismissWithClickedButtonIndex:0 animated:NO];  

效果如:

小結:iPhone開發應用之顯示無按鈕警告框的內容介紹完了,希望通過本文的學習能對你有所協助!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.