Hey I am trying to display objects from NSMutableArray as text in UITextView and I am getting a problem:
Invalid operands to binary expression ('void' and 'NSString *')
Any suggestions how can it be done?
Here is the Code:
for (id obj in Mview.arrayTape)
viewTape.text = Mview.arrayTape.removeLastObject + @"/n" + viewTape.text;
viewTape is an UITextView , arrayTape is the NSMutableArray passed from another view
Any help would be much appreciated.