私はこのようiPhoneで文字列を書式設定または追加する方法は?
NSString *title ;
- (void)uploadString:(NSString *)string
{
title =glbl.text;
NSMutableString *strRR = [[NSMutableString alloc] initWithString:title];
[strRR appendFormat:@"%@ .html"];
[self.googledocs beginUploadData:dataHtml withTitle:title inFolder:self.adirPath replaceExisting:NO];
}
glbl
で文字列をフォーマットするには、genesis1.3
のようないくつかの値を保持していると私はgenesis1.3.html. stRR is holding the value
genesis1.3 and I want to append
STRR with
.html`ある.html
と、この文字列の書式を設定するラベルです。これを行う方法?私は上記のコードでいくつかのエラーがあります。 ありがとうございます。
それはどのようなエラーあなたは手に入れている? – Kevin
@Kevinプログラムが受信した信号EXC悪いここで私はエラーが発生します[strRR appendFormat:@ "%@ .html"]; – ICoder
さらに進んでいく前に、基本的なNSString関数について学ぶ必要があります。 [NSString spec](http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html)を読んでください。 –