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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:37:36+00:00 2026-05-11T03:37:36+00:00

I wonder if already exist a generic library of validator suitable for a iPhone

  • 0

I wonder if already exist a generic library of validator suitable for a iPhone project (or better, bussines objects) for obj-c.

Things like:

Validator.IsNotEmpty.. Validator.IsValidEmail.. Validator.IsValidZipCode.. Validator.IsValidRegex.. Validator.IsInRange.. 
  • 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. 2026-05-11T03:37:37+00:00Added an answer on May 11, 2026 at 3:37 am

    There is a standard validation pattern in Cocoa, including Cocoa Touch, called Key-Value Validation that you should conform to if you want to validate user input other than through an NSFormatter.

    In essence, for a property name that you want validated, you implement a method following this pattern:

    - (BOOL)validateName:(id *)ioValue error:(NSError **)error; 

    Then, when you want to validate a property before setting it from your UI, you just use:

    NSString *proposedName = [[nameField.stringValue copy] autorelease]; NSError *nameError;  if ([person validateValue:&proposedName forKey:@'name' error:&nameError]) {     person.name = proposedName; } else {     // present nameError to the user in a reasonable way } 

    Note that you do not invoke -validateValue:forKey:error: or -validateName:error: method in your -setName: method. Instead, you invoke your -setName: method (as I do via dot syntax above) once you know the value you’re passing for it will be valid.

    Also, read the document on Key-Value Validation that I mentioned above to understand why proposedName is an autoreleased copy of a field’s string value, instead of just its string value.

    If you’re implementing something more complicated than per-property validation, such as whole-object validation or even object graph validation, be sure to see how the Core Data framework on Mac OS X handles it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This seems like a straight forward plugin, I wonder if it already exists (yeah,
I wonder if there exist any library (jquery or css + php) to show
wonder why when I export my project to *.air and I install it on
I wonder whether someone has an idea for how to count combinations like the
I wonder where can I get more information about special syntax like @somevar or
I wonder why there doesn't exist a literal for partial function types. I have
I wonder if there is an already implemented (common - standard) driver/kernel module/sysfs entry
I'm using Spring/Hibernate combination for my project, with standard CRUD operations. I wonder, is
I wonder if there is any good framework / library out there for sending
Before I attempt to program the following function myself, I wonder if something already

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.