Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8114717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T03:14:04+00:00 2026-06-06T03:14:04+00:00

When I run the following Code it crashes at the last line. I don’t

  • 0

When I run the following Code it crashes at the last line. I don’t have any idea why. This function gets called in awakeFromNib.

- (void)setMotdText:(NSString *)text
{
    NSString *boldFontName = [[NSFont boldSystemFontOfSize:12] fontName];
    NSMutableAttributedString *attrstr = [[NSMutableAttributedString alloc] initWithString:text];

    [attrstr beginEditing];

    [attrstr addAttribute:NSFontAttributeName value:boldFontName range:NSMakeRange(0, 16)];

    [attrstr endEditing];

    [self.motdTextView.textStorage setAttributedString:attrstr];
}

I get this crash log:

2012-06-22 11:32:22.348 MSM-Plan[20785:403] -[__NSCFConstantString _isDefaultFace]: unrecognized selector sent to instance 0x7fff79b9f380
2012-06-22 11:32:22.349 MSM-Plan[20785:403] An uncaught exception was raised
2012-06-22 11:32:22.349 MSM-Plan[20785:403] -[__NSCFConstantString _isDefaultFace]: unrecognized selector sent to instance 0x7fff79b9f380
2012-06-22 11:32:22.351 MSM-Plan[20785:403] (
    0   CoreFoundation                      0x00007fff8a5bef56 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8ae19d5e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8a64b1be -[NSObject doesNotRecognizeSelector:] + 190
    3   CoreFoundation                      0x00007fff8a5abe23 ___forwarding___ + 371
    4   CoreFoundation                      0x00007fff8a5abc38 _CF_forwarding_prep_0 + 232
    5   AppKit                              0x00007fff8e0b060c -[NSMutableAttributedString(NSMutableAttributedStringKitAdditions) fixFontAttributeInRange:] + 1249
    6   AppKit                              0x00007fff8e0afeb7 -[NSMutableAttributedString(NSMutableAttributedStringKitAdditions) fixAttributesInRange:] + 64
    7   AppKit                              0x00007fff8e19b521 -[NSTextStorage processEditing] + 107
    8   AppKit                              0x00007fff8e0c2564 -[NSTextStorage edited:range:changeInLength:] + 385
    9   Foundation                          0x00007fff8d6f4497 -[NSConcreteMutableAttributedString replaceCharactersInRange:withAttributedString:] + 328
    10  AppKit                              0x00007fff8e1dfd19 -[NSConcreteTextStorage replaceCharactersInRange:withAttributedString:] + 81
    11  MSM-Plan                            0x000000010206af5a -[MSM_PlanAppDelegate setMotdText:] + 314
    12  MSM-Plan                            0x000000010206c455 -[MSM_PlanAppDelegate awakeFromNib] + 1701
    13  CoreFoundation                      0x00007fff8a5b5fb1 -[NSObject performSelector:] + 49
    14  CoreFoundation                      0x00007fff8a5b5f32 -[NSSet makeObjectsPerformSelector:] + 274
    15  AppKit                              0x00007fff8e0369ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    16  AppKit                              0x00007fff8e02cf73 loadNib + 322
    17  AppKit                              0x00007fff8e02c470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    18  AppKit                              0x00007fff8e02c38b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    19  AppKit                              0x00007fff8e02c2ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    20  AppKit                              0x00007fff8e29d06f NSApplicationMain + 398
    21  MSM-Plan                            0x000000010206adf2 main + 34
    22  MSM-Plan                            0x000000010206adc4 start + 52
)
2012-06-22 11:32:22.416 MSM-Plan[20785:403] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString _isDefaultFace]: unrecognized selector sent to instance 0x7fff79b9f380'
*** First throw call stack:
(
    0   CoreFoundation                      0x00007fff8a5bef56 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8ae19d5e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8a64b1be -[NSObject doesNotRecognizeSelector:] + 190
    3   CoreFoundation                      0x00007fff8a5abe23 ___forwarding___ + 371
    4   CoreFoundation                      0x00007fff8a5abc38 _CF_forwarding_prep_0 + 232
    5   AppKit                              0x00007fff8e0b060c -[NSMutableAttributedString(NSMutableAttributedStringKitAdditions) fixFontAttributeInRange:] + 1249
    6   AppKit                              0x00007fff8e0afeb7 -[NSMutableAttributedString(NSMutableAttributedStringKitAdditions) fixAttributesInRange:] + 64
    7   AppKit                              0x00007fff8e19b521 -[NSTextStorage processEditing] + 107
    8   AppKit                              0x00007fff8e0c2564 -[NSTextStorage edited:range:changeInLength:] + 385
    9   Foundation                          0x00007fff8d6f4497 -[NSConcreteMutableAttributedString replaceCharactersInRange:withAttributedString:] + 328
    10  AppKit                              0x00007fff8e1dfd19 -[NSConcreteTextStorage replaceCharactersInRange:withAttributedString:] + 81
    11  MSM-Plan                            0x000000010206af5a -[MSM_PlanAppDelegate setMotdText:] + 314
    12  MSM-Plan                            0x000000010206c455 -[MSM_PlanAppDelegate awakeFromNib] + 1701
    13  CoreFoundation                      0x00007fff8a5b5fb1 -[NSObject performSelector:] + 49
    14  CoreFoundation                      0x00007fff8a5b5f32 -[NSSet makeObjectsPerformSelector:] + 274
    15  AppKit                              0x00007fff8e0369ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    16  AppKit                              0x00007fff8e02cf73 loadNib + 322
    17  AppKit                              0x00007fff8e02c470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    18  AppKit                              0x00007fff8e02c38b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    19  AppKit                              0x00007fff8e02c2ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    20  AppKit                              0x00007fff8e29d06f NSApplicationMain + 398
    21  MSM-Plan                            0x000000010206adf2 main + 34
    22  MSM-Plan                            0x000000010206adc4 start + 52
)
terminate called throwing an exception(lldb)

Has anybody an idea? If I call it with a NSAttributedString-Object there´s no error.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T03:14:05+00:00Added an answer on June 6, 2026 at 3:14 am

    I had to change the first line to:

        NSFont *boldFont = [NSFont boldSystemFontOfSize:12];
    

    Now it works, because the value attribute requires a NSFont-Object and not a NSString with the fonts name.

    This is the working Code:

    - (void)setMotdText:(NSString *)text
    {
        NSFont *boldFont = [NSFont boldSystemFontOfSize:12];
        NSMutableAttributedString *attrstr = [[NSMutableAttributedString alloc] initWithString:text];
    
        [attrstr beginEditing];
    
        [attrstr addAttribute:NSFontAttributeName value:boldFont range:NSMakeRange(0, 16)];
    
        [attrstr endEditing];
    
        [self.motdTextView.textStorage setAttributedString:attrstr];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In views.py I have the following view which gets called when a new user
The following code in my function (run in a loop) is causing my program
I'm new to C and I have created the following code, but when run
I have the following code that fails when i run it. my .h file:
when I trying to run following code. var result = from c in db.brand
I run the following code using Adobe Flash Professional CS5.5, Flash Player 11.2.202.235, ActionScript
I tried to run the following code, which is inside of a Bash-script. NUMBER=600
When I run the following code: private void button1_Click(object sender, EventArgs e) { Bitmap
When I run the following code, I get the exception below: ''# NOTE: ExcelApp
When I run the following code, it only seems to be downloading the first

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.