This has been bugging me; how do I set a NSTextField to output a string from multiple NSTextFields?
In VB.NET you could do this:
I am wanting to know how to do the same with Obj-C. I would also like to know the code such as to create a new line in string. (TextBox1.Text = "Test" & vbNewLine ; code for new line in visual basic)
Thanks!
In VB.NET you could do this:
Code:
TextBox1.Text = TextBox2.Text & TextBox3.Text
I am wanting to know how to do the same with Obj-C. I would also like to know the code such as to create a new line in string. (TextBox1.Text = "Test" & vbNewLine ; code for new line in visual basic)
Thanks!