Preguntas etiquetadas con swift

Swift es un lenguaje de programación de propósito general seguro, rápido y expresivo desarrollado por Apple Inc. para sus plataformas y Linux. Swift es de código abierto. Use la etiqueta solo para preguntas sobre las características del idioma o para solicitar código en Swift. Use las etiquetas [ios], [ipados], [macos], [watch-os], [tvos], [cocoa-touch] y [cocoa] para preguntas (independientes del idioma) sobre las plataformas o marcos.


19
Convertir cadena en flotante en Swift
Estoy tratando de convertir números tomados de un UITextField, que supongo, son en realidad Strings, y convertirlos a Float, para poder multiplicarlos. Tengo dos UITextfields que se declaran de la siguiente manera: @IBOutlet var wage: UITextField @IBOutlet var hour: UITextField Cuando el usuario presiona un botón UIB, quiero calcular los …

17
Swift agregar icono / imagen en UITextField
Me gustaría agregar un icono / imagen en UITextField. El icono / imagen debe dejarse como marcador de posición. Probé esto: var imageView = UIImageView(); var image = UIImage(named: "email.png"); imageView.image = image; emailField.leftView = imageView; Gracias.
101 ios  image  swift  login  uitextfield 

5
¿Qué son 'obtener' y 'configurar' en Swift?
Estoy aprendiendo Swift y estoy leyendo The Swift Programming Language de Apple, no tengo experiencia en Objective C (solo PHP, JS y otros, pero no Obj C) En la página 24-25 veo este código: //...Class definition stuff... var perimeter: Double { get { return 3.0 * sideLength } set { …
101 swift  accessor 

20
¿Cómo puedo colorear un UIImage en Swift?
Tengo una imagen llamada arrowWhite. Quiero colorear esta imagen en negro. func attachDropDownArrow() -> NSMutableAttributedString { let image:UIImage = UIImage(named: "arrowWhite.png")! let attachment = NSTextAttachment() attachment.image = image attachment.bounds = CGRectMake(2.25, 2, attachment.image!.size.width - 2.25, attachment.image!.size.height - 2.25) let attachmentString = NSAttributedString(attachment: attachment) let myString = NSMutableAttributedString(string: NSString(format: "%@", self.privacyOptions[selectedPickerRow]) …
101 ios  image  swift  colors  uiimage 










30
Fallo de segmentación del compilador rápido al compilar
Agregar una heightpropiedad calculada (conveniente) UIViewen mi UIViewExtension.swiftarchivo está causando que el compilador Swift tenga errores de segmentación ... ¿Qué podría estar fallando aquí? 0 swift 0x00000001061e5608 llvm::sys::PrintStackTrace(__sFILE*) + 40 1 swift 0x00000001061e5af4 SignalHandler(int) + 452 2 libsystem_platform.dylib 0x00007fff894da5aa _sigtramp + 26 3 libsystem_platform.dylib 0xb03939841e997c88 _sigtramp + 2504775416 4 swift …
100 swift 

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.