Change font type and size of UIActionSheet title string

23,020

Solution 1

I assume you have a class which implements the UIActionSheetDelegate protocol and your class is a delegate class of the current UIActionSheet, so in that class you can change the whole title of the UIActionSheet like

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet {
    for (UIView *_currentView in actionSheet.subviews) {
        if ([_currentView isKindOfClass:[UILabel class]]) {
            [((UILabel *)_currentView) setFont:[UIFont boldSystemFontOfSize:15.f]];
        }
    }
}

but as far as you see you have no chance to format the part of the UILabel object's text property.


you could add a new UILabel for your actionsheet now with a different font, if you want to see a text with the bolded DO: string... but from here the limit is you imagination only, you can format the UIActionSheet's elements in this method or inside the -didPresentActionSheet: method as well.

so this would be the idea for this.

UPDATE on 7 Oct 2013

in iOS7 we don't really have direct access to the subviews of an UIAlertView or an UIActionSheet object, so this solution might not be working properly on iOS7 environment.

if you have any issue with it on iOS7, please comment it to me! thank you.

UPDATE on 22 Jun 2014

I have not found any solution to do such thing directly with the new UIAlertController in iOS8, the title label looks to be not visible in the entire view-hierarchy of the UIAlertController, neither visible before it appears or even after.

NOTE: I've also figured out that it is not forbidden to overlap/cover its content, after it appeared on the screen. currently it is impossible to predict that it will work over Beta or whether or not it is AppStore-safe.

NOTE: please bear in your mind the view-lifecycle's schedule, and do not try to present any content in a view or view controler if that is not in the navigation stack already.

anyway, here is a Swift solution how I could reach the layers and I could add my custom view to it.

let alertController: UIAlertController = UIAlertController(title: "", message: "", preferredStyle: UIAlertControllerStyle.Alert)
self.presentViewController(alertController, animated: true, completion: {
    let aboveBlurLayer: UIView = alertController.view.subviews[0] as UIView
    let belowBlurLayer: UIView = (aboveBlurLayer.subviews[0].subviews as Array<AnyObject>)[0] as UIView
    let customView: UIView = UIView(frame: aboveBlurLayer.bounds)
    customView.backgroundColor = UIColor.redColor()
    aboveBlurLayer.addSubview(customView)
    })

NOTE: it might be useful to add custom content to an alert/actionsheet, but if it does not work in the future, I will update my answer.

Solution 2

For iOS 7 the following code will work.

Implement UIActionSheetDelegate as follows

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet {
    [actionSheet.subviews enumerateObjectsUsingBlock:^(id _currentView, NSUInteger idx, BOOL *stop) {
        if ([_currentView isKindOfClass:[UIButton class]]) {
            [((UIButton *)_currentView).titleLabel setFont:[UIFont boldSystemFontOfSize:15.f]];
            // OR
            //[((UIButton *)_currentView).titleLabel setFont:[UIFont fontWithName:@"Exo2-SemiBold" size:17]];
        }
    }];
}

For iOS 6

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet {
    for (UIView *_currentView in actionSheet.subviews) {
        if ([_currentView isKindOfClass:[UILabel class]]) {
            [(UILabel *)_currentView setFont:[UIFont boldSystemFontOfSize:15.f]];
            // OR
            //[(UILabel *)_currentView setFont:[UIFont fontWithName:@"Exo2-SemiBold" size:17]];
        }
    }
}

Solution 3

Based on Holex's answer:

for both iOS7 and iOS6 the following has worked for me to change the title of UIActionSheet properties. Please note that I am actually adding a new subview, since for unknown? reason updating the current UILabel gives only vertically half of the text? Also "title" is apparantly the first UILabel, so we break the loop after one change.

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet {
    for (UIView *_currentView in actionSheet.subviews) {
        if ([_currentView isKindOfClass:[UILabel class]]) {
            UILabel *l = [[UILabel alloc] initWithFrame:_currentView.frame];
            l.text = [(UILabel *)_currentView text];
            [l setFont:[UIFont fontWithName:@"Arial-BoldMT" size:20]];
            l.textColor = [UIColor darkGrayColor];
            l.backgroundColor = [UIColor clearColor];
            [l sizeToFit];
            [l setCenter:CGPointMake(actionSheet.center.x, 25)];
            [l setFrame:CGRectIntegral(l.frame)];
            [actionSheet addSubview:l];
            _currentView.hidden = YES;
            break;
        }
    }
}

The above seems to work on iOS6 and iOS7 simulators. I am not sure if this would work with other future versions of iOS though.

Solution 4

Following may be useful.

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{
    [actionSheet.subviews enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
        if ([obj isKindOfClass:[UIButton class]]) {
            UIButton *button = (UIButton *)obj;
            button.titleLabel.font = [UIFont systemFontOfSize:15];
        }
    }];

}
Share:
23,020
Xavi Valero
Author by

Xavi Valero

Terrible at coding, desperately trying to be a good coder :)

Updated on August 05, 2022

Comments

  • Xavi Valero
    Xavi Valero almost 2 years

    I have a UIActionSheet with title string "DO: These tasks". In the title string, the substring "DO:" should be Bold(with a particular font size) and the substring "These tasks" should be Regular. Is it possible? How can I do this?