本文介绍了如何在iPhone中将整数数据类型数组值分配给UITextField的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将整数数据类型数组值分配给UITextField因为我有一个整数数组,我想在文本字段中显示其内容

how to assign an integer data type array values to UITextFieldbecause i have an integer array and i want to display its contents in the textfield

推荐答案

 [*yourtextfieldname* setText:[NSString stringWithFormat:@"%d",yourintegervalue]];

这篇关于如何在iPhone中将整数数据类型数组值分配给UITextField的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 03:12