0
I’m developing an app where the user can choose in the middle of a text, the position where the output value of a string should be printed. Example: Normally when we print a string in the middle of a text we do so:
NSLog (@" Um texto com:%@", minhaVariavelString);
Or when we use an Uitextfield:
_meuTextField.text = [NSString stringWithFormat: @"Meu valor:%@.", minhaString];
Maintaining the position of %@
fixed.
However I want to be able to provide the user with the possibility to change the output position of the string on a text composition screen when the app is running.
Blz! Half way, now I’ll do it in the View, I’ll see if I can do it in a Drag and Drop mode! Vlw!
– Tiago Amaral