Re: UIApplication terminate?

2010-03-16 Thread Peter Blazejewicz
Hello Steve, On Tue, Mar 16, 2010 at 9:41 AM, Steve Cronin steve_cro...@mac.com wrote: Folks; I have an iPhone application that is used for a very specific purpose. After perusing and modifying data the user is given the option to effectively [Cancel]  or  [Save] After they have made

Re: Dock position and size

2010-02-14 Thread Peter Blazejewicz
dock positions using preferences, then wrap it through api of your choice, hth, regards, Peter Blazejewicz ___ 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: Dock position and size

2010-02-14 Thread Peter Blazejewicz
...@gmail.com wrote: On Sun, Feb 14, 2010 at 11:08 AM, Peter Blazejewicz peter.blazejew...@gmail.com wrote: and change dock positions using preferences, then wrap it through api of your choice, Changing the Dock position is not your application's business. --Kyle Sluder

Re: [iPhone 3.1] NSInvocation on main thread?

2010-02-11 Thread Peter Blazejewicz
Hi John, NSInvocation can be invoked on main thread as any NSObject subclass simply by performing selector on itself on main thread, However I think you're looking for custom additions similar to that one blogged here (Dave Dribin's blog):

Re: iPhone: UIWebView not displaying until scrolled?

2010-02-11 Thread Peter Blazejewicz
issue that somehow became apparent on your web view use, regards, Peter Blazejewicz On Thu, Feb 11, 2010 at 8:40 PM, Eric E. Dolecki edole...@gmail.com wrote: I am animating a UIWebView after it's loaded - but it doesn't display anything unless I scroll it a little bit. If I call [webView reload

Re: [iPhone 3.1] navigationItem.backBarButtonItem weirdness

2010-02-10 Thread Peter Blazejewicz
Hi John, your selector is missing colon: @selector(back:) for method: -(IBAction)back:(id)sender hth, regards, Peter Blazejewicz On Thu, Feb 11, 2010 at 1:10 AM, John Michael Zorko jmzo...@mac.com wrote: Hello, all ... I've a question about the UINavigationController backBarButtonItem

Re: iPhone: UIWebView scroll position

2010-02-09 Thread Peter Blazejewicz
(stringByEvaluatingJavaScriptFromString)? Like: [NSString stringWithFormat: @window.scrollTo(0, %d); value]? kind regards, Peter Blazejewicz On Tue, Feb 9, 2010 at 8:10 PM, Eric E. Dolecki edole...@gmail.com wrote: I'd like to be able to have a user tap an area which will scroll the contents

Re: Threading issues with ivars

2010-02-02 Thread Peter Blazejewicz
is actually nil in your -(void)updateLabels method, regards, Peter Blazejewicz On Tue, Feb 2, 2010 at 1:49 PM, Andreas Grosam agro...@onlinehome.de wrote: Hello, I have the following issue: There is a label nameLabel which text needs to be set from a certain field in the dictionary.  I

Re: NSXMLParser question about duplicate nodes

2010-01-06 Thread Peter Blazejewicz
stringWithFormat:@%@: %...@\n, kForecastElementCodeKey, [forecast valueForKey:kForecastElementCodeKey]]]; } self.textView.text = outputStr; [outputStr release]; outputStr = nil; } with regards from reader of your books, Peter Blazejewicz ___ Cocoa

Re: [iPhone] Why can't a UITextField be its own delegate?

2009-07-26 Thread Peter Blazejewicz
Hi WT, have you tried - to avoid everything discussed in thread - to use implementation like below one? For what you want it could be more proper avoiding discussed issues and at the same time it hides everything into your subclass (wrapped delegate class details are hidden into module): #import

Re: How to use CFReadStrem and abort read stream normally?

2009-05-26 Thread Peter Blazejewicz
, Peter Blazejewicz ___ 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-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http

Re: High Scores local to iPhone app

2009-05-05 Thread Peter Blazejewicz
you're targeting iPhone SDK as well, regards, Peter Blazejewicz ___ 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-admins(at)lists.apple.com

Re: sending emails using URLRequest and php

2009-04-15 Thread Peter Blazejewicz
/Cocoa Touch client side code very nicely starting from GET requests, regards, Peter Blazejewicz ___ 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: Cocoa - PHP - MySQL

2009-03-03 Thread Peter Blazejewicz
are synchronous ones and you could find it more efficient or better suited for your application to use asynchronous requests with NSURLConnectionDelegate (that part is quite good documented in documentation that ships with Xcode I think), regards, Peter Blazejewicz On Mar 3, 2009, at 10:50 AM

Re: Where to declare/initialise an NSOperationQueue

2009-02-14 Thread Peter Blazejewicz
as single operation just executed in background thread within your controller? (performSelectorInBackgroundThread:withObject:) regards, Peter Blazejewicz On Feb 14, 2009, at 7:49 AM, Jacob Rhoden wrote: Hi Guys, I have been starting to use NSOperationQueue. I have ended up with one put in each

Re: Tab

2009-02-03 Thread Peter Blazejewicz
hi Stefan, have you considered using standard (in terms of Apple HIG) Dock item and/or Apple's menu bar item? To get insight on menu bar items see that 3rd party compilation list: http://menu.jeweledplatypus.org/#/ http://menu.jeweledplatypus.org/meta/ If anything vast majority of developers

Re: -stringByEvaluatingJavaScriptFromString: return value iphone

2009-01-31 Thread Peter Blazejewicz
: @error); } @end regards, Peter Blazejewicz On Jan 31, 2009, at 5:10 PM, Marco Cassinerio wrote: Hi, i'm trying to execute a javascript function on the iPhone and get the return value. The function is simple: return hello; I'm using a UIWebView

Re: -stringByEvaluatingJavaScriptFromString: return value iphone

2009-01-31 Thread Peter Blazejewicz
hi Marco, I'm not John Resig (http://ejohn.org/) but I would not assume that return o will actually evaluate to javascript object/function call, I would rather script: NSString *scriptCode = @\Hello\; or: NSString *scriptCode = @(function(){return \hello\;})();; but I would also fire up

Re: release static pointers

2009-01-26 Thread Peter Blazejewicz
hi Christian, On Jan 26, 2009, at 11:25 AM, Christian Giordano wrote: I'm wondering if and how the pointer to the statement will be released. In the code samples I saw there is no trace of the releasing (in this case, sqlite3_finalize(statement)). This is the example:

Re: CFHTTP +authentication

2009-01-25 Thread Peter Blazejewicz
hi John, On Jan 25, 2009, at 8:21 PM, John Michael Zorko wrote: Hello, all ... I guess this is more of a Core Foundation question, but it still seemed more apropos to this list than Carbon-dev. Please let me know if i'm wrong :-) there is better group then Carbon-dev:

Re: Safari Download Security Alerts

2008-12-11 Thread Peter Blazejewicz
hi Dave, that's not Safari unique feature. That's system-wide component. In your Xcode documentation window type file quarantine or navigate to GuidesSecuritySecurity OverviewSecurity Services #File Quarantine regards, Peter Blazejewicz On Dec 11, 2008, at 11:53 AM, Dave wrote: Hi All, I