Hello everyone,
That's for objective c
I would like to insert a sf symbo into a string for a title of a AlertViewController ?
UIAlertAction* mailAction = [UIAlertAction actionWithTitle:[@" " stringByAppendingString:NSLocalizedString(kSENDBYMAIL, @"")] style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action)
{
[self createMail:alert];
}];
I tryed as below but I know it's wrong, it's just to precise ma question ;-) :
UIAlertAction* mailAction = [UIAlertAction actionWithTitle:[[UIImage systemImage:@"envelope " stringByAppendingString:NSLocalizedString(kSENDBYMAIL, @"")] style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action)
{
[self createMail:alert];
}];
Thanks for a hint
Don