我正在构建一个在swift中提供和回答的应用程序,我想知道是否有办法将文本输出到iOS应用程序中的视图控制器,以保持快速语言的格式。我知道我可以在代码中的输出标签上手动格式化字符串,但这似乎非常繁琐,因为我有几个问题。这是一个问题的例子。
示例:
ViewController 1将显示:
Question: Create a Function that takes two paramaters x,y, and return the output of multiplying x and y together.
ViewController 2将显示:
答案:
func(x:Int, y:Int) -> Int{
return x * y
}
目前答案的输出是在ViewController 2上是一个UITextLabel。任何想法和/或反馈将不胜感激。
谢谢!