Re: Core Data Multiuser

2012-10-09 Thread Stefan Nobis
Flavio Donadio writes: > The interface will be like in Address Book: the user opens a > card/record for viewing, but has to click an "Edit" button to make > changes. If the record is locked, the user will get an alert when > he/she clicks the button. I need: > 1. A mechanism to avoid users openi

Re: What's the point of @properties?

2010-09-20 Thread Stefan Nobis
Antonio Nunes writes: > Maybe Stefan meant rather that the ivars do not show up in the > debugger window. Yes, that was the point of the question. -- Until the next mail..., Stefan. pgpasS7cYk4A8.pgp Description: PGP signature ___ Cocoa-dev mailin

Re: What's the point of @properties?

2010-09-20 Thread Stefan Nobis
Bill Bumgarner writes: > Thus, with the latest bleeding edge compiler, all you need is the > @property() (and cleanup in -dealloc) to declare a fully KVO > compliant attribute of your class. Is this also supported by the debugger? In XCode 3.x I once tried to omit the iVars but that's not very f

iOS and Oracle Databases

2010-08-21 Thread Stefan Nobis
Hi. A customer is interested in utilizing the iPad. One feature request is to get direct access to the in-house Oracle database (via VPN). I searched a little bit but was unable to find any useful information. Therefore I assume something like the Oracle Client package or just liboci oder somethin

Re: Understanding property/synthesize

2010-08-12 Thread Stefan Nobis
Quincey Morris writes: > The ability to omit the instance variable (called the "non-fragile > instance variable" mechanism) is a feature of the latest Objective-C > compilers and runtime, and is available for 64-bit Mac OS x64 > applications, and applications running on an iOS device. As I obser

Re: Understanding property/synthesize

2010-08-09 Thread Stefan Nobis
Quincey Morris writes: > The ability to omit the instance variable (called the "non-fragile > instance variable" mechanism) is a feature of the latest Objective-C > compilers and runtime, and is available for 64-bit Mac OS x64 > applications, and applications running on an iOS device. Ah, thanks

Understanding property/synthesize

2010-08-08 Thread Stefan Nobis
Hi. I'm a bit curious about the Objective-C 2.0 property/synthesize mechanism. In all examples I've seen, an instance variable is declared for each property. But if I leave out the instance variable like in the following example, everything works fine, too. ---