我是Swift的初学者,所以请多多包涵。

这是使用UISegmentedControl的文档:

Code.

每当我尝试使用该代码时,都会得到编译代码。我目前正在尝试获取将细分3(自定义)更改为用户输入的任何内容(因此是字符串)的代码。

我努力了:

func setTitle(_ title: "Hello"?,
forSegmentAtIndex segment: 3)


func setTitle(_ title: Hello?,
forSegmentAtIndex segment: 3)


func setTitle(_ title: "Hello"?,
forSegmentAtIndex segment: Int 3)

不知道如何正确执行此操作,请帮忙!

另外,这是我要制作的应用程序的链接:http://i.imgur.com/CWoBkHk.gif。我只是真的希望自定义按钮反映什么是自定义提示%。

最佳答案

尝试这样:-

假设您有出口:-

@IBOutlet weak var segmented :UISegmentedControl?

//Now for changing the title:-
segmented?.setTitle("test1", forSegmentAtIndex: 0)
segmented?.setTitle("test2", forSegmentAtIndex: 1)

关于ios - 如何使用UISegmentedControl更改Swift中的标签?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34247462/

10-12 23:26