It turns out that although you cannot put a newline character in the title
property of a menu item, you can put a newline in the attributedTitle
string. Something like this will work:
item.attributedTitle = [[NSAttributedString alloc] initWithString:@"line 1\nline 2"];
tbodt source share