Hey guys,
I have this quick problem I need to solve. I have a string here like so:
textbox.text =@"Your name is"
then I want to add right after "your name is" a variable that displays text.
so in Visual Basic I learned it like this...
textbox.text =@"Your name is" & variable1.
but now i can see that it doesn't work like that in cocoa.
Please help me solve this...