您好,登錄后才能下訂單哦!
1 UIAlertView 類似于Android中的Dialog,簡單用法如下:
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Messate" delegate:nil cancelButtonTitle:@"Cancle" otherButtonTitles:nil, nil];
[alertView show];
2 UIActionSheet底部彈出的對話框,較常用,簡單用法如下:
UIActionSheet *actionSheet = [[UIActionSheetalloc] initWithTitle:@"您確定要清除文本框內的內容嗎?" delegate:selfcancelButtonTitle:@"取消"destructiveButtonTitle:@"確定"otherButtonTitles:nil];
[actionSheet showInView:self.view];
總結:兩者都有Delegate,并Delegate中的方法,實現對事件的監聽。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。