Swift:UIButton textLabel.text 值在 switch 语句中不可用

2023-07-06移动开发问题
2

本文介绍了Swift:UIButton textLabel.text 值在 switch 语句中不可用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我是 Swift 和 iOS 开发的新手,所以我正在尝试构建一个用于学习目的的计算器应用程序.但是,我遇到了一个错误.我已经用它们代表的数字为我的所有按钮命名,所以我通过 sender.titleLabel.text 在 buttonPress IBAction 中检索标题.然后,我将其传递给 switch 语句,以确定按钮是数字还是运算符.

I am new to Swift and iOS development, so I am trying to build a calculator app for learning purposes. However, I am encountering an error. I have titled all of my buttons with the number they represent, so I am retrieving the title in the buttonPress IBAction via sender.titleLabel.text. Then, I pass that into a switch statement to determine if the button was a number or an operator.

func handleButton (sender:UIButton) {
switch sender.titleLabel.text {
case "1","2","3","4","5","6","7","8","9","0" :
    println(sender.titleLabel.text)
default:
    break
    }     
}

错误是 sender.titleLabel.text 不会绑定到我输入的字符串值 - 也不会绑定到任何字符串值 - 即使它是 String 类型.

The error is that sender.titleLabel.text will not bind to the string values I have entered - nor any string values - even though it is is of type String.

推荐答案

目前编译器中似乎存在一个错误,即不能在 switch 语句中使用 Implicitly Unwrapped Optionals.相反,您可以使用可选绑定来满足编译器的要求.作为一个额外的好处,这将处理 titleLabel.text 为 nil 的情况.

There seems to be a bug in the complier at the moment where Implicitly Unwrapped Optionals cannot be used in switch statements. Instead you can use optional binding to satisfy the compiler. As an extra plus, this will handle the case where titleLabel.text is nil.

func handleButton (sender:UIButton) {
    if let text = sender.titleLabel.text {
        switch text {
            case "1","2","3","4","5","6","7","8","9","0" :
                println(sender.titleLabel.text)
            default:
                break
        }
    }
    else {
        // sender.titleLabel.text is nil
    }
}

这篇关于Swift:UIButton textLabel.text 值在 switch 语句中不可用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

恢复游戏 cocos2d
Resume game cocos2d(恢复游戏 cocos2d)...
2024-08-12 移动开发问题
6

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

[ios.cocos2d+box2d]如何禁用自动旋转?
[ios.cocos2d+box2d]how to disable auto-rotation?([ios.cocos2d+box2d]如何禁用自动旋转?)...
2024-08-12 移动开发问题
7

从 Documents 目录存储和读取文件 iOS 5
Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)...
2024-08-12 移动开发问题
9

如何在 cocos2d 环境之外实现 cocos2d 游戏的虚拟摇杆?
How can I implement a virtual joystick for a cocos2d game outside the cocos2d environment?(如何在 cocos2d 环境之外实现 cocos2d 游戏的虚拟摇杆?)...
2024-08-12 移动开发问题
13