ios - invalid operands to binary expression ('NSString *' and 'NSString *') -


मेरे पास निम्न कोड है:

  NSString * String = TextField1.text + TextField2।   

यह त्रुटि दे रही है: -बायरी अभिव्यक्ति ('NSString *' और 'NSString *') के लिए मान्य ऑपरेंसेस < P>

आप इसे ऐसा नहीं कर सकते, क्योंकि उद्देश्य- concatenation के लिए '+' ऑपरेटर का उपयोग नहीं करता

इस तरह से काम करना चाहिए:

  NSString * concat = [NSString stringWithFormat @ "% @% @", TextField1.text, TextField2.text];   

या

  NSString * concat = [TextField1.text stringByAppendingString: TextField2.text];   

आशा है कि यह आपके लिए काम करता है;)

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -