RSSフィードに取り組んでおり、タイトルとサブタイトルを大文字に変換する必要がありますが、これを行う簡単な方法はありますか?
ありがとう。
cellForRowAtIndexPath内
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSString *string1 = @"The quicK brOwn fox jumpeD";
cell.textLabel.text = [string1 uppercaseString];
....
NSString* str = @"abcd abcd abcd abcd";
[str capitalizedString]; // = Abcd Abcd Abcd Abcd
[str uppercaseString]; // = ABCD ABCD ABCD ABCD
uppercaseString、NSStringのメソッド?
テキストフィールドのプロパティの下のストーリーボードからそれを行うことができます。[大文字]ドロップダウンを[すべての文字]に変更します。デバイスでテストするか、キーボードがオンになっていることを確認してください。物理キーボードから入力すると、シミュレータキーボードの大文字の矢印が上書きされます。