macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

appendData:

レシーバに入っているデータの末尾に他のデータを付け加えます
-(void)appendData:(NSData *)otherData

解説

レシーバに入っているデータの末尾に他のデータ(otherData)を付け加えます。

返り値

( void )

なし

引数

( NSData * )otherData

他のデータ

クラス

NSMutableData

Instance Methods

使用可能

10.0

参照

- appendBytes:length:

例文

//testWritetext.txtのファイルが警告無しで下記変わるので注意!!!!

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
NSString *path = @"~/testWritetext.txt";//ユーザーディレクトリのトップのtestWritetext.txtというファイルへ
NSString *str = @"Mutable data";
NSString *str2 = @"This is a pen.";
NSData *dat1 = [NSData dataWithBytes:[str2 cString]
        length:[str2 cStringLength]];
NSMutableData *dat2 = [[NSMutableData alloc] autorelease];
[dat2 appendData:dat1];
[dat2 appendBytes:[str cString] length:[str cStringLength]];

if ([dat2 writeToFile:[path stringByExpandingTildeInPath] atomically:YES]){
    NSLog(@"YES");
}else{
    NSLog(@"NO");
}

}

@end