Re: Best practice when opening a Master-Detail app with no data in it yet

2012-09-20 Thread Richard Altenburg (Brainchild)
Op 20 sep. 2012, om 11:29 heeft Uli Kusterer het volgende geschreven: > You're letting a template file made by a programmer that illustrates how to > code decide what features your user interface will present? :-o No, but I was just wondering that if I want a better approach what would be con

Re: Best practice when opening a Master-Detail app with no data in it yet

2012-09-19 Thread Richard Altenburg (Brainchild)
Op 19 sep. 2012, om 22:31 heeft Uli Kusterer het volgende geschreven: > Is the item actually useful to the user beyond being there? Or would the user > have to delete the item and create a sensible one to actually use your app? The item is like a demo of what an item could look like, and the u

Re: Best practice when opening a Master-Detail app with no data in it yet

2012-09-19 Thread Richard Altenburg (Brainchild)
I might do both, although I can not do a "tap here" instruction if the Add button is not visible at launch. Have to create another way for that initial item to become alive. Thanks for your thoughts. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards];

Best practice when opening a Master-Detail app with no data in it yet

2012-09-19 Thread Richard Altenburg (Brainchild)
ke to hear ideas, and also invite you to send me to another list if this question is not in the proper list here. Thanks! [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; ___ Cocoa-dev mailing list (Cocoa-dev@lists.app

Re: Core Graphics optimisation

2012-08-13 Thread Richard Altenburg (Brainchild)
what is available and what has already been explained in books and online sessions. I wish I could help in answering your question, in spite of the above... [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 10 aug. 2012, om 10:09 heeft Fulbert Boussaton <4

Re: How to (slowly) rotate a view

2012-08-05 Thread Richard Altenburg (Brainchild)
You are most welcome. It took me a while to find the cleanest solution for rotating views in my project and I wanted to give it to you to save you some headaches... Mit freundlichem Gruß. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 5 aug. 2012, om 2

Re: How to (slowly) rotate a view

2012-08-05 Thread Richard Altenburg (Brainchild)
Something along these lines maybe?: [UIView animateWithDuration:durationSeconds animations:^ { [view setTransform:CGAffineTransformRotate([view transform], angleRadians)]; } ]; [[[Brainchild alloc] initWithName:@"Richard Alte

Re: Is it 'normal' that scrolling in a UIScrollView leaks some bytes?

2012-07-24 Thread Richard Altenburg (Brainchild)
won't shoot my app for it probably, and those few bytes missing won't hurt my end users too, so I can move on to the next step in my project. Thanks again. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 24 jul. 2012, om 19:34 heeft Eeyore het

Re: Is it 'normal' that scrolling in a UIScrollView leaks some bytes?

2012-07-24 Thread Richard Altenburg (Brainchild)
Op 24 jul. 2012, om 19:28 heeft Richard Altenburg (Brainchild) het volgende geschreven: > Leaked Object: Malloc 48 Bytes Here is a deep copy of the call stack inside which this leak happened: Bytes Used # Leaks Symbol Name 48 Bytes 100.0% 1 main 48 By

Is it 'normal' that scrolling in a UIScrollView leaks some bytes?

2012-07-24 Thread Richard Altenburg (Brainchild)
get that nervous, or is it not an issue at all? (That is highly unlikely but I can ask, right?) Thank you for any insights. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; ___ Cocoa-dev mailing list (Cocoa-dev@lists

Re: Help: Create, import and edit SVG object in Cocoa app

2012-07-18 Thread Richard Altenburg (Brainchild)
This maybe? <https://github.com/SVGKit/SVGKit/> [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 6 jul. 2012, om 04:59 heeft lupeiyu het volgende geschreven: > I want to create SVG objects in my cocoa application using iPad Devices. > >

Re: do you init your instance variables in init method or outside the class?

2012-07-18 Thread Richard Altenburg (Brainchild)
... [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 25 jun. 2012, om 07:48 heeft fly2never het volgende geschreven: > Besides this two way to init instance variables, which one is the best > practice? > Method 1 ensure that all instance variables(properties) are i

Re: cocoabuilder closed?

2012-07-10 Thread Richard Altenburg (Brainchild)
] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 10 jul. 2012, om 15:03 heeft Chris Paveglio het volgende geschreven: > Does anyone know what's going on with Cocoabuilder.com? I haven't been able > to get there for more than a month, on

Re: Modal event processing

2012-07-06 Thread Richard Altenburg (Brainchild)
-LKVY [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 6 jul. 2012, om 22:02 heeft Charlie Dickman het volgende geschreven: > I just had a look at the NSAnimation class document and it actually suggests > very prominently that, because of the limit

Re: Modal event processing

2012-07-06 Thread Richard Altenburg (Brainchild)
think it is worth a try in your case before you rethink your application. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 6 jul. 2012, om 15:38 heeft Charlie Dickman het volgende geschreven: > I'll have to re

Re: How to copy class interface and implementation without connections to .xib file

2012-07-02 Thread Richard Altenburg (Brainchild)
connections to the old projects' .xib as well, so I won't do that again to avoid this problem. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 2 jul. 2012, om 09:41 heeft Charles Srstka het volgende geschreven: > I guess what I’m saying is, check ove

Re: How to copy class interface and implementation without connections to .xib file

2012-07-01 Thread Richard Altenburg (Brainchild)
Op 2 jul. 2012, om 00:57 heeft Andy Lee het volgende geschreven: > If you Command-click the file icon in the window's title bar, you can see the > full path of the file you are looking at. If the path goes to the old > project, close it with File > Close "YourFileName.xib". The keyboard > equiv

Re: How to copy class interface and implementation without connections to .xib file

2012-07-01 Thread Richard Altenburg (Brainchild)
Op 1 jul. 2012, om 22:59 heeft Jens Alfke het volgende geschreven: >> It immediately showed that the outlets and actions were connected, and on >> inspection they were connected to the .xib in the old project. > > Um, what _exactly_ did it show? There's no way for files in different > projects

Re: How to copy class interface and implementation without connections to .xib file

2012-07-01 Thread Richard Altenburg (Brainchild)
project is beyond me at this moment. [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 1 jul. 2012, om 21:21 heeft Charles Srstka het volgende geschreven: > ’m not sure I understand what you mean by this. Did you copy over the .xib > from the other project?

How to copy class interface and implementation without connections to .xib file

2012-07-01 Thread Richard Altenburg (Brainchild)
ch is obviously not what I want. I just want to connect the IBOutlets and IBActions to the .xib in my new iOS project. What did I do wrong? And how did all those books I read not make me smart enough to figure this out on my own? I must be getting old... [[[Brainchild alloc] initWithName:@&qu

Re: Base64 encoding of NSImage

2012-07-01 Thread Richard Altenburg (Brainchild)
solutions given. It is not that easy to find quality code that you can build release quality products on, I think... I hope I am wrong, I need a few decoders and encoders and socket libraries myself currently ;-) [[[Brainchild alloc] initWithName:@"Richard A

Re: Base64 encoding of NSImage

2012-07-01 Thread Richard Altenburg (Brainchild)
fast anyways, and always faster than the web server you are uploading to. This might help: http://email.about.com/cs/standards/a/base64_encoding.htm [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 1 jul. 2012, om 17:46 heeft Alexander Hartner het volgende gesch

Re: Base64 encoding of NSImage

2012-07-01 Thread Richard Altenburg (Brainchild)
I think the answers given here will help you out: http://stackoverflow.com/questions/392464/any-base64-library-on-iphone-sdk [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 1 jul. 2012, om 17:23 heeft Alexander Hartner het volgende geschreven: > I

Re: Handling "Smart Zoom" gesture?

2012-06-28 Thread Richard Altenburg (Brainchild)
hild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 28 jun. 2012, om 08:59 heeft Graham Cox het volgende geschreven: > I did, but I have to target 10.6.x and later. Sorry I forget to mention that. > BTW, features that are part of M...

Re: Handling "Smart Zoom" gesture?

2012-06-27 Thread Richard Altenburg (Brainchild)
You should watch "Session 231 - What's New with Gestures" from the WWDC 2012 video sessions... [[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards]; Op 28 jun. 2012, om 06:34 heeft Graham Cox het volgende geschreven: > I'm adding touch

Re: UISegmentedControl description is wrong.

2012-06-24 Thread Richard Altenburg (Brainchild)
The documentation does fail to mention the radio button mechanism for the UISegmentedControl, but some books about iOS programming do mention it. Too bad you had to find this out on your own, and also sorry to say that you can not change this behavior (except by subclassing the control and manag

Re: NSWindow AutoSave

2012-06-22 Thread Richard Altenburg (Brainchild)
It seems to me that indeed there are bugs in the AutoSave mechanism, but as I am not sure what you already tried I suggest reading this and then ask for more when needed: http://cocoadev.com/wiki/NSWindowFrameAutosizing Op 22 jun. 2012, om 18:10 heeft koko het volgende geschreven: > I have sea

Re: Core Image

2012-06-15 Thread Richard Altenburg
Op 15 jun. 2012, om 14:24 heeft Luca Ciciriello het volgende geschreven: > I'm porting some CoreImage code from MacOS X to iOS and I'm unable to find > the key KCGImagePropertyOrientation. > My doubt is: Is this key available in iOS? > I'm using iOS 5.1 with Xcode 4.3.3 My documentation serach

Re: Core Image

2012-06-15 Thread Richard Altenburg (Brainchild)
Op 15 jun. 2012, om 14:24 heeft Luca Ciciriello het volgende geschreven: > I'm porting some CoreImage code from MacOS X to iOS and I'm unable to find > the key KCGImagePropertyOrientation. > My doubt is: Is this key available in iOS? > I'm using iOS 5.1 with Xcode 4.3.3 My documentation serach