0
私はラベルを持っていると私はそれらの1 NSIntegerおよびその他の文字列がobjective c文字列値を整数に追加する方法は?
_imgIndex.text = [@(index+1) stringValue]; //how to add string here?
私はラベルを持っていると私はそれらの1 NSIntegerおよびその他の文字列がobjective c文字列値を整数に追加する方法は?
_imgIndex.text = [@(index+1) stringValue]; //how to add string here?
あなたが(整数値(index
)とのObj-Cの文字列オブジェクトを持っていることが表示されますことを、それを二つの要素の値を与えたいですstringValue
)、それらを連結したいとします。これを行う方法はたくさんありますが、ここでは2つです:
_imgIndex.text = [@(index).description stringByAppendingString:stringValue];
:
_imgIndex.text = [NSString stringWithFormat:@"%lu%@",index,stringValue];
他の技術は、まず、文字列に整数に変換する他の文字列を連結することであろうhttp://stackoverflow.com/questions/510269/shortcuts-in-objective-c-to-concatenate-nsstrings – luk2302