文字間のスペースを見つけ、スペースの前の文字と後の文字を使用するコードを作成しています。これらの文字は NSString に格納されます。これは私がこれまでに持っているものですが、空の文字は表示されません。
NSString *tempTitle = self.title;
unsigned int indexOfSpace; // Holds the index of the character with the space
unsigned int titleLength = (unsigned int)self.title.length; // Holds the length of the title
for (unsigned int count = 0; count < titleLength; count++)
{
if ([tempTitle characterAtIndex:count] == "") // If the character at the index is blank, store this and stop
{
indexOfSpace == count;
}
else // Else, we keep on rollin'
{
NSLog(@"We're on character: %c", [tempTitle characterAtIndex:count]);
}
}
nil
、空の文字列 ("") と " "を試しましたが、役に立ちませんでした。何か案は?