IOS7學習之路九(ios7自定義UIAlertView)

IOS7的UIAlertView 不支持自定義,沒法添加subview .ios

不過能夠用第三方庫git上的下載連接    https://github.com/wimagguc/ios-custom-alertview  git

Custom iOS7 AlertView

使用方法:github

1.下載spa

2下載以後解壓後把其中的.net

  • CustomIOS7AlertView.h
  • CustomIOS7AlertView.m
兩個文件粘貼到本身的項目中。


3.添加頭文件code

在須要使用UIAlertView的地方,添加頭文件。blog

#import "CustomIOS7AlertView.h"ip

而且添加協議。 <CustomIOS7AlertViewDelegate>
4.添加AlertView

 CustomIOS7AlertView *alertView = [[CustomIOS7AlertView alloc] init];
    [alertView setButtonTitles:[NSMutableArray arrayWithObjects:@"取消",@"肯定", nil]];//添加按鈕
    [alertView setContainerView:youcontroller.view];
    [alertView show];

運行結果截圖:get



很簡單就不作具體介紹了,你們能夠下載Demo看看:http://download.csdn.net/detail/superlele123/6986895it

點擊右上角Item彈出AlertView.

相關文章
相關標籤/搜索