«uialertview» 태그된 질문

30
Swift에서 UIAlertView를 어떻게 만들 수 있습니까?
Swift에서 UIAlertView를 만들려고 노력했지만 어떤 이유로 든이 오류가 발생하여 문을 올바르게 얻을 수 없습니다. 제공된 인수를 허용하는 'init'에 대한 과부하를 찾을 수 없습니다. 내가 쓴 방법은 다음과 같습니다. let button2Alert: UIAlertView = UIAlertView(title: "Title", message: "message", delegate: self, cancelButtonTitle: "OK", otherButtonTitles: nil) 그런 다음 사용하고 있습니다. button2Alert.show() 현재로서는 충돌이 발생하고 …

24
UIAlertController 사용자 정의 글꼴, 크기, 색상
경고를 표시하기 위해 새로운 UIAlertController를 사용하고 있습니다. 이 코드가 있습니다. // nil titles break alert interface on iOS 8.0, so we'll be using empty strings UIAlertController *alert = [UIAlertController alertControllerWithTitle: title == nil ? @"": title message: message preferredStyle: UIAlertControllerStyleAlert]; UIAlertAction *defaultAction = [UIAlertAction actionWithTitle: cancelButtonTitle style: UIAlertActionStyleCancel handler: nil]; …

4
varlist가 아닌 배열을 전달하여 UIActionSheet 'otherButtons'를 만듭니다.
UIActionSheet의 단추 제목에 사용할 문자열 배열이 있습니다. 불행히도 메서드 호출의 otherButtonTitles : 인수는 배열이 아닌 가변 길이 문자열 목록을 사용합니다. 그렇다면 이러한 제목을 UIActionSheet에 어떻게 전달할 수 있습니까? 내가 제안한 해결 방법은 nil을 otherButtonTitles :에 전달한 다음 addButtonWithTitle :을 사용하여 버튼 제목을 개별적으로 지정하는 것입니다. 그러나 이것은 "취소"버튼을 UIActionSheet의 마지막 …


10
UIAlertView 먼저 사용되지 않는 IOS 9
UIAlertView 대신 UIAlertController를 사용하는 여러 가지 방법을 시도했습니다. 여러 가지 방법을 시도했지만 경고 작업이 작동하지 않습니다. 다음은 IOS 8 및 IOS 9에서 잘 작동하지만 사용되지 않는 플래그로 표시되는 코드입니다. 아래의 우아한 제안을 시도했지만이 맥락에서 작동하도록 만들 수 없습니다. 앱을 제출해야하는데 이것이 마지막으로 해결해야 할 문제입니다. 추가 제안에 감사드립니다. 나는 초보자입니다. …

9
UIAlertAction에 대한 핸들러 작성
UIAlertView사용자 에게 a 를 제시하고 있는데 처리기를 작성하는 방법을 알 수 없습니다. 이것은 내 시도입니다. let alert = UIAlertController(title: "Title", message: "Message", preferredStyle: UIAlertControllerStyle.Alert) alert.addAction(UIAlertAction(title: "Okay", style: UIAlertActionStyle.Default, handler: {self in println("Foo")}) Xcode에서 많은 문제가 발생합니다. 문서에 따르면 convenience init(title title: String!, style style: UIAlertActionStyle, handler handler: ((UIAlertAction!) -> Void)!) …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.