Change font type and size of UIActionSheet title string

后端 未结 6 748
误落风尘
误落风尘 2021-02-06 05:29

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 ta

相关标签:
6条回答
  • 2021-02-06 06:09

    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]];
            }
        }
    }
    
    0 讨论(0)
  • 2021-02-06 06:11

    see these link .and use it. ohattributedlabel

    http://www.cocoacontrols.com/platforms/ios/controls/ohattributedlabel

    0 讨论(0)
  • 2021-02-06 06:11

    There is an internal property of UIActionSheet called _titleLabel so it is possible to get a reference and change the attributed string property of this label directly.

    Please be aware, that this is a private API in might be rejected in the App store.

    Here is how it works:

    - (NSAttributedString *) actionSheetAttributedTitle;
    {
        NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:@"Test"];
        UIFont *font=[UIFont fontWithName:@"Helvetica-Bold" size:13.0f];
        [attString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, attString.length)];
        [attString addAttribute:NSForegroundColorAttributeName
                      value:[UIColor blackColor]
                      range:NSMakeRange(0, attString.length)];
        return [attString copy];
    }
    
    - (void)willPresentActionSheet:(UIActionSheet *)actionSheet;
    {
        UILabel *sheetTitleLabel;
        if([actionSheet respondsToSelector:@selector(_titleLabel)]) {
            sheetTitleLabel = objc_msgSend(actionSheet, @selector(_titleLabel));
            sheetTitleLabel.attributedText = [self actionSheetAttributedTitle];
    
        }
    }
    
    0 讨论(0)
  • 2021-02-06 06:20

    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];
            }
        }];
    
    }
    
    0 讨论(0)
  • 2021-02-06 06:21

    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.

    0 讨论(0)
  • 2021-02-06 06:29

    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.

    0 讨论(0)
提交回复
热议问题