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 1082401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:17:30+00:00 2026-05-16T22:17:30+00:00

A user selects a song in my mp3 player. He proceeds to rename a

  • 0

A user selects a song in my mp3 player. He proceeds to rename a song (thus highlighting the “name” column of that given song).

Let’s say he pastes in “The\nGreat\nSong”. By default, if the string formatter doesn’t allow newlines (which is what I want), the app will produce a beep.

How can I process the string before it is pasted? This is what I want: If the string is less than 200 characters long, and if it contains newlines, replace the newlines with spaces before the string actually gets pasted. If it is longer than 200 characters, just do what it would do by default (because I don’t want the user accidentally pasting his PhD thesis in there).

How can one do something like that?

  • 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-05-16T22:17:31+00:00Added an answer on May 16, 2026 at 10:17 pm

    Turns out it was probably easiest to just edit my NSFormatter subclass itself. Here is my NSFormatter method, in case anyone is interested:

    - (BOOL)isPartialStringValid:(NSString *)partial
                newEditingString:(NSString **)newString
                errorDescription:(NSString **)errorString
    {
      *errorString = nil;
      *newString = nil;
    
      if ([partial containsIllegal])
      {
        NSBeep();
        return NO;
      }
      else if ([partial containsNewline])
      {
        if ([partial length] > 200)
        {
          NSBeep();
          return NO;
        }
        else
        {
          *newString = [partial stringByReplacingOccurrencesOfString:@"\n" withString:@" "];
          return NO;
        }
      }
      else
        return YES;
    }
    

    Those two NSString category methods there are simply as follows:

    - (BOOL)containsIllegal
    {
      for (int i=0; i<[self length]; i++)
      {
        unichar currentChar = [self characterAtIndex:i];
    
        BOOL charIsIllegal = [[NSCharacterSet illegalCharacterSet] characterIsMember:currentChar];
    
        if (charIsIllegal)
          return YES;
      }
      return NO;
    }
    
    - (BOOL)containsNewline
    {
      for (int i=0; i<[self length]; i++)
      {
        unichar currentChar = [self characterAtIndex:i];
    
        BOOL charIsNewLine = [[NSCharacterSet newlineCharacterSet] characterIsMember:currentChar];
    
        if (charIsNewLine)
          return YES;
      }
      return NO;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say a user selects 50 facebook ids that are his friends. I take
The user selects a state from a drop-down field, then ajax posts that value
I have button that a user selects and I pop up a AlertDialog to
Actually in my website www.musicking.in when the user selects songs one player window will
Actually in my website www.musicking.in when the user selects songs one player window will
I'm making a mock-media player program that allows the user to input,edit,delete and view
I'm implementing a music player into my app and when a user selects a
I want to know when a user selects a song using media picker, what
In my app I am building my own media player. When a user selects
A user selects a portion of an image for a cut and paste operation.

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.