Re: UI Design on iPad

2011-04-21 Thread Roni Music
Message: 6 Date: Thu, 21 Apr 2011 12:23:46 +0800 From: Bing Li lbl...@gmail.com Subject: UI Design on iPad To: Cocoa-dev@lists.apple.com Message-ID: banlktin9ycfc8e4hb03quno4vh5slgu...@mail.gmail.com Content-Type: text/plain; charset=ISO-8859-1 Dear all, I am a new developer on iPad. After

Re: How to Access iPhoto,iTunes and iMove Playlist

2010-06-15 Thread Roni Music
On Tue, Jun 15, 2010 at 10:14 AM, Jens Alfke j...@mooseyard.com wrote: That's not true - you can access the apps' interchange files, which are just regular property lists. (For example, ~/Music/iTunes/iTunes Music Library.xml.) These files are explicitly provided for data interchange -

Re: Audio APIs [Carbon is C++?]

2010-03-01 Thread Roni Music
There was a similar discussion on the coreaudio-api list a year ago, it ended like this with an answer from one of the CoreAudio engineers: From: William Stewart bi...@apple.com I don't want a full-blown discussion here, but from everything we've seen (including the guts of obj_message send)

Re: Stack-based C++ class to wrap NSAutoreleasePool

2009-11-14 Thread Roni Music
I'm building a Framework with some exported extern C functions in Objective-C++, based on this example: http://developer.apple.com/internet/webservices/webservicescoreandcfnetwork.html Because this is a Framework, it doesn't have its own main() function to set up an NSAutoreleasePool. So I

Re: Universal binary with different deployment targets - how?

2009-08-08 Thread Roni Music
So one slice is for the older arm6 processor and the other slice for the newer arm7 processor. My app doesn't require any OS 3 features and I still want it to run on OS 2 (in my case OS 2.2.1). I'm using SDK 3, I set the iPhone OS Deployment Target to iPhone OS 2.2.1 which then sets

Re: Problem with friend function and gcc 4.2 with

2008-08-10 Thread Roni Music
with To: cocoa-dev cocoa-dev cocoa-dev@lists.apple.com Cc: Roni Music [EMAIL PROTECTED] Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes FWIW, it does in fact compile in 4.2 (and in 4.0) when formatted as you suggest. I still believe the original

Re: Problem with friend function and gcc 4.2 with

2008-08-08 Thread Roni Music
I'm not a C++ expert but your code below should not compile (as I see it) You should declare the friend function inside the class: class test1 { public: friend test1* newtest1(int x); /* the function newtest1() is now a friend to test1 class and may access private member variables and

Re: Style Question (Robert Claeson)

2008-06-28 Thread Roni Music
the bottom of the page below has one opinion why one style is superior to the other, (at least when it comes to C++ and the way C++ objects behave when going out of scope) http://www.relisoft.com/book/lang/scopes/2local.html On 28 Jun 2008, at 06:30, Alex Wait wrote: I have noticed,