• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: NSString stringWithFormat: and strings
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: NSString stringWithFormat: and strings


  • Subject: Re: NSString stringWithFormat: and strings
  • From: Mac First <email@hidden>
  • Date: Sat, 4 Jul 2009 14:30:13 -0700


On Jul 3, 2009, at 8:27 PM, Andy Lee wrote:

On Jul 3, 2009, at 11:20 PM, KK wrote:
Hello,
I have a NSString (from a property list file) that has the %@ formats in
it... So.. I do something like this:


NSString *stringFromPlistFile;
NSString *newString = [NSString stringWithFormat:stringFromPlistFile,
@"Hello"];

But that doesn't work...

What do you mean "doesn't work"? What *happens*?

Yeah, what Andy said.

Try this:

  NSString *format = @"%@, %@!";
  NSString *hello = @"Hello";
  NSString *world = @"world";
  NSString *result = [NSString stringWithFormat:format, hello, world];
  NSLog(@"result: %@", result);

Then use similar techniques to debug your situation.

--
For the fly-blown words that make me spew
Still in his ears were holy,
And he was born knowing what I had learned
Out of books and slowly.


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >NSString stringWithFormat: and strings (From: KK <email@hidden>)
 >Re: NSString stringWithFormat: and strings (From: Andy Lee <email@hidden>)

  • Prev by Date: Re: Animation Did Stop - Works For OS3 but not OS2.2
  • Next by Date: Can we pass pointer of a class to a function?
  • Previous by thread: Re: NSString stringWithFormat: and strings
  • Next by thread: looks like my syntax is wrong. Does not compile
  • Index(es):
    • Date
    • Thread