こういう人に向けて発信しています。 ・配列で保有していたデータをNSStringで出したい ・特定の文言を挿入したい ・Objective-C初心者 そもそもどういうことか NSArray * array = @「@ "りんご",@ "ゴリラ"]; -> NSString * string = @ "りんご/ゴリラ" ...
This is a category on NSArray that finds the indexes of the longest common subsequence with another array. UITableView has built-in methods for adding and removing cells with animations, but it has no ...
こういう人に向けて発信しています。 ・NSMutableArrayの取扱いや理解が浅い人 ・mutableCopyについて理解が浅い人 ・Objective-C初心者 そもそもmutableCopyとは? NSMutableArray *copyArray = [[NSMutableArray alloc] init]; [copyArray addObject:@"A"]; [copyArray ...
Holding information in variables is important, but what happens when we want to hold a lot of individual pieces of information all at once? We could create a variable for each piece and this would ...