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

  • Home
  • SEARCH
  • 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

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
Ever wonder what wikipedia's database schema looks like? I recently read this thread from
I wonder what's 'correct' way to create user accounts in MongoDB and actions like
I'm using Spring/Hibernate combination for my project, with standard CRUD operations. I wonder, is
Before I attempt to program the following function myself, I wonder if something already
I wonder if linq already contains something to generate collections on the fly. Lets
Wonder what the difference between: static PROCESSWALK pProcess32First=(PROCESSWALK)GetProcAddress(hKernel,Process32First); ... pProcess32First(...); what is hKernel? Look
Wonder if anyone can help me understand how to sum up the column of
wonder what's wrong <table id=tblDomainVersion> <tr> <td>Version</td> <td>No of sites</td> </tr> <tr> <td class=clsversion>1.25</td>

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.