エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
error "Passing address of non-local object to __autoreleasing parameter for write-back"
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
error "Passing address of non-local object to __autoreleasing parameter for write-back"
I'm converting my socket client to ARC: - (id)initWithHostname:(NSString *)hostname AndPort:(NSIn... I'm converting my socket client to ARC: - (id)initWithHostname:(NSString *)hostname AndPort:(NSInteger)port { if((self = [super init])) { oBuffer = [[NSMutableData alloc] init]; iBuffer = [[NSMutableData alloc] init]; iStream = [[NSInputStream alloc] init]; oStream = [[NSOutputStream alloc] init]; [NSStream getStreamsToHost:[NSHost hostWithName:hostname] port:port inputStream:&iStream outputStream