Re: BOOL parameter passed as nil object

2016-04-18 Thread M Pulis
What does the compiler say? Not tried this, but as BOOL is neither a pointer nor subclass of NSObject, I would not expect reliable results, but a type mismatch. Of course, I could be wrong, YMMV. Gary On Apr 18, 2016, at 6:56 PM, Carl Hoefs wrote: Suppose I have an object with a declare

Re: Limiting app installation

2016-09-05 Thread M Pulis
My bet would be "no" as that would already be part of submitting an app to the store. You could prepare a business case to request this from Apple, but I'd suspect you'll need to roll your own code, and that won't be easy if not impossible without Apple's support. Perhaps Enterprise or B-

Re: Limiting app installation

2016-09-05 Thread M Pulis
asking if it's allowed by Apple. On Sep 5, 2016, at 13:34 , M Pulis wrote: My bet would be "no" as that would already be part of submitting an app to the store. You could prepare a business case to request this from Apple, but I'd suspect you'll need to ro

Re: Limiting app installation

2016-09-05 Thread M Pulis
Have you even read the App Store guidelines yet? And Apple has a list of lists... try that. Finding you a list is still not a cocoa issue. Gary On Sep 5, 2016, at 2:17 PM, Rick Mann wrote: Fine, can you suggest a better list? On Sep 5, 2016, at 14:08 , M Pulis wrote: If it isn't l

Re: Sometimes all my menus are disabled

2017-02-13 Thread M Pulis
Consider getting an old PowerPC Mac, run your app as a blueprint and rebuild a new interface in the current Xcode. That will likely be faster than hacking away at your current nib, and a bit of fun as well. Take it one window at a time so you understand what is happening. That is how we bro

Re: UIAlertView has zero bounds

2015-04-20 Thread M Pulis
Sure... BYOV - build your own view: Create a custom UIViewController, pop in a UITextField and a couple of buttons. Works on all versions, done in under an hour max Good Luck! Gary ...working in a code mind... On Apr 20, 2015, at 4:18 PM, Michael Crawford wrote: Is there a way to pro

Re: UIAlertView has zero bounds

2015-04-22 Thread M Pulis
wrote: On Apr 20, 2015, at 6:37 PM, M Pulis wrote: Sure... BYOV - build your own view: Create a custom UIViewController, pop in a UITextField and a couple of buttons. Works on all versions, done in under an hour max…. There’s no need to do that! You already brought up the u

Re: What's the purpose of the "fax" received action?

2009-09-02 Thread M Pulis
On Sep 2, 2009, at 9:10 AM, Tim McGaughy wrote: On Aug 25, 2009, at 8:19 AM, Andy Lee wrote: On Aug 25, 2009, at 8:29 AM, Graham Cox wrote: On 24/08/2009, at 5:57 PM, Behrang Saeedzadeh wrote: Hi all, What's the purpose of the "fax" received action in NSTableView and is it document

Re: Hide an Item on Desktop

2009-10-08 Thread M Pulis
On Oct 8, 2009, at 4:37 PM, I. Savant wrote: On Oct 8, 2009, at 7:24 PM, Maggie Zhang wrote: Does anyone know if it's possible to programmatically hide an single item (e.g. a file or a mounted disk or a directory) from the Desktop? Rename it so that it starts with a period. "Dot-files" a

Re: Hide an Item on Desktop

2009-10-08 Thread M Pulis
<> On Oct 8, 2009, at 6:31 PM, Kyle Sluder wrote: On Thu, Oct 8, 2009 at 6:18 PM, M Pulis wrote: Please do not advise this hack. It is not supported by the Finder. Erm? The Finder very much supports not displaying dot files. And open/save dialogs even support toggling their displa

Re: Hide an Item on Desktop

2009-10-08 Thread M Pulis
On Oct 8, 2009, at 7:55 PM, Dave Carrigan wrote: On Oct 8, 2009, at 6:51 PM, M Pulis posted a screen capture of a finder error. That's just the finder being nice to the non-techies. The longer "if you name this with a dot then you'll have to hit a special key combinat

Re: OSX have that is equivalent to WaitMessage() Win32 API

2009-10-18 Thread M Pulis
On Oct 18, 2009, at 9:43 PM, Mars999 wrote: void CEngine::Start() { m_lLastTick = SDL_GetTicks(); m_bQuit = false; // Main loop: loop forever. while ( !m_bQuit ) { // Handle mouse and keyboard input HandleInput(); if ( m_bMinimized ) { // Release some syste

Re: Where to find info about infrared port

2010-07-15 Thread M Pulis
Now you need a Mac with an IR transmitter port you have one? Gary On Jul 14, 2010, at 7:44 PM, Travis Siegel wrote: I've recently picked up a pair of wireless headphones. I thought they were bluetooth, which I know osx supports. Unfortunately, after I got the headphones home, and fi

Re: totally baffled by "odoc" apple event failing on launch

2009-12-01 Thread M Pulis
Tried AE Monitor (Oxalyn Software)? Oxalyn Software > Æ Monitor Gary On Dec 1, 2009, at 11:31 AM, David M. Cotter wrote: recently our app has stopped responding to "odoc" apple events on startup. that is, if the user double clicks a document of our app, and this causes the app to launch,

Re: How to draw background image in my app window

2009-05-30 Thread M Pulis
No, the conclusion is : That _is_ the easy and straight way to do it. Subclassing is your power and friend, my friend. Once you understand what those lines actually do, you should have a different point-of-view. "Embrace the subclass, for they know what they are doing." :-) gary On May 30,

Re: QTCaptureSession class reference

2009-06-03 Thread M Pulis
Check out http://developer.apple.com/documentation/QuickTime/Conceptual/ QTKitCaptureProgrammingGuide/Introduction/Introduction.html On Jun 3, 2009, at 5:56 PM, Cain John wrote: I cannot find this documentation. Searching the Mac Dev Center gives over 60 references to the class but no docu

Re: QTCaptureSession class reference

2009-06-04 Thread M Pulis
On Jun 3, 2009, at 9:33 PM, Andy Lee wrote: On Jun 3, 2009, at 11:41 PM, Fritz Anderson wrote: On 3 Jun 2009, at 7:56 PM, Cain John wrote: I cannot find this documentation. Searching the Mac Dev Center gives over 60 references to the class but no documentation of it's properties and metho

Re: QTCaptureSession class reference

2009-06-04 Thread M Pulis
Welcome to the group! On Jun 4, 2009, at 8:56 PM, Cain John wrote: Thanks for all that - now have the reference as html. Will file a bug report. Will join the quicktime-api list Thanks again John On 04/06/2009, at 5:34 PM, M Pulis wrote: On Jun 3, 2009, at 9:33 PM, Andy Lee wrote: On Jun

Re: [NSTask] -launch return

2009-06-09 Thread M Pulis
On Jun 9, 2009, at 8:16 PM, Erg Consultant wrote: I find it absolutely appalling on a modern OS that I should have to write a 3rd PPC process and launch it just to get the API to behave as documented. Erg Given what Rosetta allows us to do, I find it absolutely a miracle of great engi

Re: [NSTask] -launch return

2009-06-09 Thread M Pulis
On Jun 9, 2009, at 8:56 PM, Erg Consultant wrote: I just opted for #2 & #3. Erg good call! Gary ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Re: [NSTask] -launch return

2009-06-10 Thread M Pulis
is booted whether or not it needs it. Nooo thanks! Sent from my iPod On Jun 9, 2009, at 10:08 PM, M Pulis wrote: On Jun 9, 2009, at 9:56 PM, Erg Consultant wrote: I am willing to do the "pre-launch Rosetta" hack to work around but if it takes 2-3 seconds to launch and I do a ex

Re: [NSTask] -launch return

2009-06-12 Thread M Pulis
On Jun 11, 2009, at 12:29 AM, ERG Consultant wrote: Do you know anything at all about how os'es work? THANK YOU FOR ASKING! See below for details. Yes. For example, Rosetta is not an OS. It is scheduled by the OS. I was also in attendance at WWDC when they introduced Rosetta. Given my b

Re: [NSTask] -launch return

2009-06-12 Thread M Pulis
On Jun 11, 2009, at 12:30 AM, ERG Consultant wrote: Ps: at least by paying DTS I will get a CORRECT answer. Exactly why I was one of those suggesting you contact DTS! Short on memory, yes? I also took the time to suggest that you present a business case to Apple. Especially if you want

ANN: Rosetta Booster Beta 1.0.1a (reference [NSTask] -launch return)

2009-06-15 Thread M Pulis
Group, In a failed attempt of the group to provide a solution for a recent poster, I became intrigued with the subjective analysis that the OP represented as facts responsible for rejecting (with extreme prejudice) my proposal in particular. Others may have received off- list personal reje

Re: I want my app to crash!

2009-06-17 Thread M Pulis
On Jun 17, 2009, at 1:33 AM, Andreas Grosam wrote: On Jun 17, 2009, at 3:27 AM, Jim Correia wrote: On Jun 16, 2009, at 6:58 PM, Andreas Grosam wrote: On Jun 16, 2009, at 11:33 PM, Jim Correia wrote: Another example is chained message sends where an inner message send may return nil. M

Re: I want my app to crash!

2009-06-17 Thread M Pulis
sting code. It is easier to write, however, so I'll get there! Apologies for the noise. MP (learning to chill out) On Jun 17, 2009, at 4:37 AM, Andy Lee wrote: On Jun 17, 2009, at 6:29 AM, M Pulis wrote: Most of us see the alloc init pattern when learning from example code for a quick fe

Rosetta Booster Conclusion - It Works

2009-06-19 Thread M Pulis
This completes the discussion of Rosetta Booster on this list. Its relevance comes from a cocoa dev poster concerned about startup delay of PPC code on Intel. A responder proposed a solution. I implemented and tested the proposed solution. As a Cocoa developer and a Product Manager, I am in

Re: Core Data dog-slow when using first time after boot

2009-08-19 Thread M Pulis
Folks, This sounds like Rosetta. If you are seeing this on an intel machine, and if _any_ code in the execution path is non-intel, then Rosetta will startup, blocking until ready. I have an app called Rosetta Booster; when set as a login item, Rosetta is engaged, initialized, and ready to

Re: Core Data dog-slow when using first time after boot

2009-08-19 Thread M Pulis
;sounds like" is a guess, not a conclusion A guess based on logic and deduction, my Dear Watson. :-) Gary On Aug 19, 2009, at 12:16 PM, I. Savant wrote: On Aug 19, 2009, at 3:09 PM, M Pulis wrote: This sounds like Rosetta. If you are seeing this on an intel machine, and if _any_ cod

Re: Core Data dog-slow when using first time after boot

2009-08-19 Thread M Pulis
s "know" somehow that it can't possibly be Rosetta and are looking elsewhere in solving this with greater rapidity. gary On Aug 19, 2009, at 1:05 PM, I. Savant wrote: On Aug 19, 2009, at 3:55 PM, M Pulis wrote: (5) tito was close with "warmupfile" workaround (is sq

Re: Core Data dog-slow when using first time after boot

2009-08-19 Thread M Pulis
On Aug 19, 2009, at 2:21 PM, M Pulis wrote: responders, etc (you can execute PPC frameworks onto an Intel machine, yes?) No, not from an native app. Sorry 'bout that. Extremely unlikely that Rosetta is the OP's problem unless there is something like a helper app that

Re: Core Data dog-slow when using first time after boot

2009-08-19 Thread M Pulis
y apparent in the posts make it difficult to nail every problem. It will be interesting to see what ultimately helps the OP, should he share it. Gary On Aug 19, 2009, at 4:04 PM, I. Savant wrote: On Aug 19, 2009, at 5:21 PM, M Pulis wrote: You may know, but I have no idea what ve

Re: Core Data dog-slow when using first time after boot

2009-08-19 Thread M Pulis
han just native code. Gary On Aug 19, 2009, at 6:21 PM, Bill Bumgarner wrote: The point was that sqlite could not possibly be non-native. On Aug 19, 2009, at 5:20 PM, M Pulis wrote: On Aug 19, 2009, at 1:56 PM, Bill Bumgarner wrote: On Aug 19, 2009, at 1:05 PM, I. Savant wrote: On Aug 19

Re: Core Data dog-slow when using first time after boot

2009-08-20 Thread M Pulis
ok best, gary ToothPics Company 1.800.218.0531 On Aug 20, 2009, at 2:16 AM, Ruotger Skupin wrote: Am 20.08.2009 um 04:38 schrieb M Pulis: I got that, Bill, thank you. The OP did not specify what particular sql store (we still do NOT know) nor if he is compiled Universal, has any

Re: iPhone/iPad device orientation problems

2010-10-13 Thread M Pulis
Sir, Not sure I understand the problem... the user determines the orientation of the device... all (I think) we can/should do is respond to whatever orientation is when we launch and when notified of changes... To "force" the device, have you looked at - (BOOL)shouldAutoRotateToInterface

Re: WWDC

2012-04-25 Thread M Pulis
On Apr 25, 2012, at 10:45 AM, vincent habchi wrote: •••—•— On 25 avr. 2012, at 19:19, Rick Mann wrote: Is WWDC really sold out already? That was faster than the eye can wink. I wonder how many tickets are actually offered. All of them! :-) gary "eat, code, sleep" Vincent __

Re: Localization based on location

2012-06-03 Thread M Pulis
App Store is simply a starting point... On launch we adjust our UI based on the user preferences, a Canadian user can be French Canadian, or if close to the border and commutes, could choose US English or Canadian ad infinitum... our app contains all (of our) supported localizations.

iOS; how to "connect" to 3G

2012-10-18 Thread M Pulis
My iOS app uses the Reachability sample code to detect network availability to work "offline" or "online". When using 3G, we get to the "connectionrequired" state. What to do then? We try a login to our web site and that fails. WIFI works great, but we need 3G also. What am I missing or sh

Re: iOS; how to "connect" to 3G

2012-10-18 Thread M Pulis
12, at 12:55 PM, M Pulis wrote: My iOS app uses the Reachability sample code to detect network availability to work "offline" or "online". When using 3G, we get to the "connectionrequired" state. What to do then? We try a login to our web site and that fails.

Re: variable problem is driving me nuts

2012-10-27 Thread M Pulis
clients is not (yet) a proper NSMutableArray.. Try one of the init methods within the NSMutableArray. gary On Oct 27, 2012, at 4:51 PM, H Miersch wrote: hi. in my current project i have this line in the header for the app delegate: NSMutableArray *clients; in the app delegate itself, th

Re: Turning off screen shot ability

2013-03-06 Thread M Pulis
Why would there be a simple way? A simple way off would require a simple way on to avoid breaking a plethora of apps. Screenshots and screen movies are how many apps are easily and quickly documented by honest consultants and IT help desks; a vital tool. As a developer, I know everyone el

Re: Turning off screen shot ability

2013-03-06 Thread M Pulis
Fine, Good rehearsal, but we are not the folks you need support from. If it was easy, Google would have it listed or someone here would have quickly replied. You have a special need, that's fine and what DTS is all about. Go for it. Gary On Mar 6, 2013, at 1:43 PM, Brad O'Hearne wrote

Re: Dismissing Open dlog before doc actually opens

2013-08-14 Thread M Pulis
running on 10.5.8. Pages '08 Safari 5.0.6 M On Aug 14, 2013, at 3:05 AM, Jeremy Hughes wrote: Graham Cox (14/8/13, 06:51) said: They did, which is why first modeless dialogs (from System 1? 2?) and then sheets (OSX 1.0) were developed. Even as far back as the original Inside Macintos

Any Cocoa folks in Arizona?

2009-02-02 Thread M Pulis
Looking to start a cocoa group here in Arizona. Phoenix and metro area. Anyone? Gary ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admin

Mirror...rorriM

2008-10-08 Thread M Pulis
Anyone developed a mirror Image Unit? Just the kernel code and ROI would be enough. Would rather not re- invent what seems to be a wheel someone may already have written (like Picture Taker [setMirroring], except for live video). Gary ___ Cocoa-de

Re: Mirror...rorriM : Details Please

2008-10-09 Thread M Pulis
real time video preview provided by QTCaptureView? I am not cocoa savvy enough to simply use CIAffineTransform, please, more detail. On Oct 8, 2008, at 11:55 PM, Raphael Sebbe wrote: Yes Apple did so. CIAffineTransform. Raphael On Thu, Oct 9, 2008 at 5:09 AM, M Pulis <[EMAIL PROTECTED]

Re: Mirror...rorriM : Details Please

2008-10-09 Thread M Pulis
, 2008 at 2:47 AM, M Pulis <[EMAIL PROTECTED]> wrote: My apologies for being a bit dense, not asking for details and apparently late to the party, but I have looked at CIAffineTransform (&filters, etc) for hours and can not make sense of it in making a flip. IB settings can not flip.I

CIAnnotation Sample

2008-10-11 Thread M Pulis
Folks, Working with the CIAnnotation Sample code. It wants to open a file of my choice, except the only files it seems to want are png files and then crashes on any png file I try. Looking at the code, it appears to accept any image file, but, I am so new to cocoa that I am likely not rea

Image Kit

2008-10-13 Thread M Pulis
I am developing an app built around Image Kit. Specifically, I have implemented the code in: http://developer.apple.com/documentation/GraphicsImaging/Conceptual/ ImageKitProgrammingGuide/ And I have some questions going beyond the guide (1) When I use flipImageHorizontal or flipImageVer

Image Kit Help Please

2008-10-13 Thread M Pulis
I am developing an app built around Image Kit. Specifically, I have implemented the code in: (http://developer.apple.com/documentation/GraphicsImaging/Conceptual/ ImageKitProgrammingGuide/) And I have some questions going beyond the guide (1) When I use flipImageHorizontal or flipImageV

Help with NSBitmapImageRep, please

2008-10-30 Thread M Pulis
Group, I have a sensor device that give me raw data for an image of 1201 by 861 pixels at 16 bits per pixel. Although monochromatic, I would like to represent it in an RGB bitmap. I use an NSInteger [3] to populate the pixels via setPixel. The result I get looks like the old TV "horizonta

NSShadow

2008-11-18 Thread M Pulis
Folks, I have an NSControl, in IB i've set a shadow and a color (green). it has an IBOutlet and is "hooked" up to my controller. When my app is run, the checkbox has a lovely green shadow. Go baby go During runtime I want to change the shadow color - but am failing to do so. So, to si

Re: Opening Ports in Leopard

2008-11-18 Thread M Pulis
I seem to recall reading somewhere Apple recommending apps not using low port numbers to maintain compatibility. You may want to consider using a different port - unless you are implementing a ntp. At least test with a different (high range) port number. If it works... well, OSX could (fi

Re: Opening Ports in Leopard

2008-11-18 Thread M Pulis
Stabbing in the dark here... Has the "some message" format now changed with Leopard? Any unused fields that must now be zero? Any subtle changes to the protocol? More things to try: You can file a bug report with Apple. As a last resort - buy an apple DTS incident. $200 and you have Appl

Re: Take picture with iSight?

2008-11-18 Thread M Pulis
You've looked at QTKit.h with its QTCapture classes? Gary On Nov 18, 2008, at 5:38 AM, Tim Andersson wrote: Sorry, forgot to say that I have looked at the IKPictureTaker and it isn't really what I'm looking for. I don't want the user to be able to choose a picture or anything like t

Re: Take picture with iSight?

2008-11-18 Thread M Pulis
I use the delegate: -(CIImage *) view:(QTCaptureView *)view willDisplayImage : (CIImage *) image to grab a frame and bypass the basics. I found it straightforward to transform and filter the frame as needed. Found the technique in Apple sample code - forget which one now... core image, c

CIAnnotation Sample Code

2008-11-18 Thread M Pulis
Has anyone run CIAnnotation in 10.5? Seems to work in 10.4 PPC (I don't have 10.4 on intel), how can I get it running in 10.5. I was hoping to use its techniques, but I'm targeting 10.5. I would find it convenient if the sample code I am learning from actually runs on the OS I am using.

Re: NSShadow

2008-11-19 Thread M Pulis
. When you set it back, the view does not realize the shadow has changed, and so does not update the CoreAnimation layer tree. Please file a bug for this. -Ken On Tue, Nov 18, 2008 at 1:19 AM, M Pulis <[EMAIL PROTECTED]> wrote: Folks, I have an NSControl, in IB i've set a shadow

what replaces ICARegisterEventNotificationPB

2008-11-19 Thread M Pulis
Folks, ICARegisterEventNotificationPB is deprecated in 10.5. What is the recommended replacement? Gary ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Re: what replaces ICARegisterEventNotificationPB

2008-11-20 Thread M Pulis
Thanks, Rob! Gary On Nov 20, 2008, at 1:02 AM, Rob Keniger wrote: On 20/11/2008, at 5:40 PM, M Pulis wrote: ICARegisterEventNotificationPB is deprecated in 10.5. What is the recommended replacement? ICARegisterForEventNotificationPB -- Rob Keniger

best way to add transitions

2008-12-01 Thread M Pulis
Hello Cocoa folk, My app uses an IKImageView in its main window. Until the user engages some function, the IK view sequentially displays slides prompting the user to become involved, a typical attract mode. What is now requested is a transition such as fade (or any of the variety of trans

Re: best way to add transitions

2008-12-01 Thread M Pulis
Transitions". Select "Custom" and in the Subview drop down, then select "Fade" for the Type. HTH, -Matt On Dec 1, 2008, at 7:54 AM, M Pulis wrote: Hello Cocoa folk, My app uses an IKImageView in its main window. Until the user engages some function, the IK view se

???& ??? in ICARegisterForEventNotification Apple Code Sample

2008-12-01 Thread M Pulis
Folks, In the code below, from http://developer.apple.com/documentation/Carbon/Conceptual/ ImageCaptureServicesProgrammingGuide/ 03HowtoWriteanImageCaptureApplication/chapter_3_section_1.html#// apple_ref/doc/uid/TP40005196-CH4-SW1 In the calls CFArrayCreate and ICARegisterForEventNotifica

Re: best way to add transitions

2008-12-02 Thread M Pulis
tions". Select "Custom" and in the Subview drop down, then select "Fade" for the Type. HTH, -Matt On Dec 1, 2008, at 7:54 AM, M Pulis wrote: Hello Cocoa folk, My app uses an IKImageView in its main window. Until the user engages some function, the IK view sequent

Re: best way to add transitions

2008-12-02 Thread M Pulis
ng. I suppose that works, but it seems to be a bit of a hack to me (no offense Devon, if you're on this list. Hacks are often necessary as this case is starting to prove. ;-) ) Any ideas you other Cocoa heads? Is it even possible to use a transition between images in a single IKImageV

Re: New to Cocoa and Objective C, and I need some basic pointers

2008-12-05 Thread M Pulis
RealBasic is a great tool, cross platform also! Gary On Dec 5, 2008, at 3:58 PM, Ian Joyner wrote: On 06/12/2008, at 8:26 AM, [EMAIL PROTECTED] wrote: Basic (Beginner's All-Purpose Symbolic Code) was used on Apple IIs (although we wrote our own ALGOL-like language at the first Apple- based

Re: Announce the time every 30 minutes

2008-12-11 Thread M Pulis
If you don't "need" this function "in" your app, or don't want to have your app running all the time just to do the chime, you could setup system preferences to let OSX do it for you. There may even be a command line that can be executed under control of your app. Gary On Dec 11, 2008, at

Re: Accuracy of timers?

2009-04-22 Thread M Pulis
Expect the same here. I believe they are not guaranteed for accuracy... from Apple: "Because of the various input sources a typical run loop manages, the effective resolution of the time interval for a timer is limited to on the order of 50-100 milliseconds." Reference google for NSTimer

Re: [iPhone] Settings Application...need an Image Picker

2009-05-16 Thread M Pulis
odd, I wonder how settings>wallpaper>camera roll or wallpaper works? maybe 3.0 will help... Sent from my iPhone On May 16, 2009, at 6:38 PM, James Lin wrote: Alex, thanx :) I don't mind writing it myself if I have to. Just the software looks weird if 9 out of my 10 settings can be set in

Re: [iPhone] Settings Application...need an Image Picker

2009-05-17 Thread M Pulis
same spot. On May 16, 2009, at 10:31 PM, M Pulis wrote: odd, I wonder how settings>wallpaper>camera roll or wallpaper works? maybe 3.0 will help... Sent from my iPhone On May 16, 2009, at 6:38 PM, James Lin wrote: Alex, thanx :) I don't mind writing it myself if I have to

Fwd: [iPhone] Settings Application...need an Image Picker

2009-05-17 Thread M Pulis
Sent from my iPhone Begin forwarded message: From: M Pulis Date: May 17, 2009 4:13:15 PM PDT To: Alex Kac Cc: James Lin , Cocoa Dev > Subject: Re: [iPhone] Settings Application...need an Image Picker time for a bug report to apple... maybe 3.0 will enhance this, like the image kit

Re: iPhone Photo Album and Camera Apps crashing

2009-05-20 Thread M Pulis
This is a known problem but has various causes. What could be the reason in my case? May be the phone memory is getting corrupted. How can I avoid this situation? Any ideas? try the iPhone dev list? gary ___ Cocoa-dev mailing list (Cocoa-dev@lis

Re: [OT] default boot device

2009-05-26 Thread M Pulis
become familiar with system preferences. learn the mac before programming the mac. Sent from my iPhone On May 26, 2009, at 6:43 AM, Тимофей Даньшин wrote: Hello. I installed another version of MacOS X in a separate partition of my hard disc. And now whenever i start the computer, it bo