enter image description here我是初学者,并在Xcode中制作了计算器应用的原型。它很棒。但是为了使它更容易使用和添加功能,我还想添加一个Clear Button。使用现有代码,我需要帮助。如果可能的话,请详细告诉我所有步骤。
守则─ 用户界面 - 如何为其添加全部清除按钮,以便显示的数字为0?
答案 0 :(得分:0)
请尝试下面给出的代码
@IBAction func ClearButtonAction(sender:AnyObject) {
your_TextfieldName.text = ""
}
答案 1 :(得分:0)
" Textfield是你文本域的出口"
template <int line, typename FuncSig>
struct HelperWrapper;
template <int line, typename Ret>
struct HelperWrapper<line, Ret (&)()> {
static inline int WrapFuncT(const int) {
return 0;
}
};
/* ... */