UITableViewで普通に描画する分には問題ありませんが、 「日付」+「区分」といった感じで、二つの情報をリスト表示させたい場合 UITableViewのプロポーショナルフォントである為 位置がずれてしまいます。 UITableViewCellのfontプロパティに等幅フォントのUIFontを指定する事で可能みたいです。 それがこちら // Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableVi