336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
- 개발환경
xcode 8, Swift 3
- 코드
let dialog = UIAlertController(title: "제목", message: "내용", preferredStyle: .alert)
let action = UIAlertAction(title: "확인", style: UIAlertActionStyle.default)
dialog.addAction(action)
self.present(dialog, animated: true, completion: nil)
버튼을 눌렀을 때, 작업을 하기 원하면 아래와 같이
let action = UIAlertAction(title: "확인", style: UIAlertActionStyle.default){ (action: UIAlertAction) -> Void in
//수행하고자 하는 코드 추가
}
'프로그램 > iOS' 카테고리의 다른 글
[xcode8, Swift 3] UIScrollView 에서 UIImageView 적용하고 이미지 줌인, 줌아웃 (0) | 2017.01.03 |
---|---|
[ iOS 9.x -> iOS 10 ] autoresizingMask 설정법 (0) | 2016.12.23 |
xcode 8 을 위한 사이즈 클래스 소개 (0) | 2016.12.06 |
Swift 3.0 에서 달라지거나 새로워진 내용들 (0) | 2016.12.03 |
[ iOS 9.x -> iOS 10 ] UIFont.preferredFontForTextStyle (0) | 2016.12.01 |