Re: Master - Detail

2013-03-26 Thread Alex Kac
We've had a lot of success with this: https://github.com/mattgemmell/MGSplitViewController though we've customized the heck out of it too... On Mar 26, 2013, at 10:34 AM, Fritz Anderson fri...@manoverboard.org wrote: On 25 Mar 2013, at 7:13 PM, koko k...@highrolls.net wrote: The Master -

Re: iOS 6 EKEvent calendar access process

2013-03-21 Thread Alex Kac
? It doesn't appear that iOS 6.1 allows creation of an EKEventStore, or a calendar within the app's domain that has R/W access to its contents. Is this case? Must we prompt the user for access to a locally calendar that they should never see? TIA. Alex Kac - President and Founder

UIScrollView - force a bounce

2013-03-16 Thread Alex Kac
I've got a paging UIScrollView with two views/pages on it that scrolls horizontally. We are playing with a few UI ideas and as part of that I'd like to programmatically bounce the scroll view. The idea is that as you open the app, we peek into the second page and then bounce it back to the

Re: archiving report

2013-02-26 Thread Alex Kac
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: https://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net -- *Alex Kac

Re: UI_APPEARANCE_SELECTOR question

2013-02-14 Thread Alex Kac
...@apple.com wrote: Appearance customizations get applied at layout time, so your view simply hasn't had the appearance applied yet in -initWithFrame:. That's why self.tabFont is nil. Luke On Feb 8, 2013, at 1:38 PM, Alex Kac a...@webis.net wrote: Trying to see if I understand this correctly

Re: UI_APPEARANCE_SELECTOR question

2013-02-14 Thread Alex Kac
some bad logic in my code that just made the first 2 calls set other variables it shouldn't have. So I've found/fixed my issue. On Feb 14, 2013, at 11:06 AM, Alex Kac a...@webis.net wrote: One more question I hope. I've got the below working great, so I started using it in other places within

UI_APPEARANCE_SELECTOR question

2013-02-08 Thread Alex Kac
Trying to see if I understand this correctly and what I may be doing wrong. I have a tab bar project that is in my workspace and I've added this to its font property: UI_APPEARANCE_SELECTOR as such: @interface AKTabBarButton : UIView { } @property (nonatomic, strong) UIFont *tabFont

Re: Simple question about storyboard

2012-12-17 Thread Alex Kac
Storyboards are iOS 5+ only. On Dec 14, 2012, at 2:33 AM, Jingwei XU jingwei.xu@gmail.com wrote: Hi everyone, I am a newbie in iOS field. I have a question about storyboard. If I use storyboard in a project, is this project is not compatible for iOS 4.3.3? Jingwei Xu Alex Kac

Re: This board is slow. Was: OS_OBJECT_USE_OBJC_RETAIN_RELEASE and xpc_release()

2012-11-05 Thread Alex Kac
The problem with the Apple Forums is that you get people who are on a power trip there more often than you have here. The really nice part of the Apple Forums is sometimes you actually get engineers who answer questions there. I also sense that this list is far more technically minded whereas

ARC conversion help - CFErrorRef* and NSError**

2012-10-29 Thread Alex Kac
ARC conversion is something we're having some issues with, but I won't bore you with the details. I'm trying to convert parts of our project to ARC and so of course there is a learning curve. Primarily between CF code and Cocoa. This one I'm stumped on as I'm just starting the CF/Cocoa

Re: ARC conversion help - CFErrorRef* and NSError**

2012-10-29 Thread Alex Kac
Aha, that's really interesting to know that's allowed. This doesn't seem like its covered in the ARC docs at all, that I could see anyhow. I'll try that. Thanks! On Oct 29, 2012, at 2:56 PM, John McCall rjmcc...@apple.com wrote: You can use a temporary, as Ken suggests. Alternatively, in this

Re: NSURLConnection working OK on iOS 6?

2012-10-04 Thread Alex Kac
NSURLConnection seeing more failure with timed outs with devices running on iOS 6? -Laurent. Alex Kac - President and Founder ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments

Re: Sandboxing redux

2012-09-05 Thread Alex Kac
(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. My wife and I do a lot of things together including Halo 3

Re: Sandboxing die.die.die

2012-08-22 Thread Alex Kac
or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information

Re: 32-bit on 10.8

2012-08-11 Thread Alex Kac
. ... The ones who aren't, but are consulting the porting guide, have a different understanding of the situation. Alex Kac - President and Founder Web Information Solutions, Inc. The person who is not hungry says that the coconut has a hard shell. -- African Tribal Saying

Re: 32-bit on 10.8

2012-08-11 Thread Alex Kac
that they prioritize bugs by how many people file for it. By refusing to do so you are saying its not that important to you. On Aug 11, 2012, at 1:18 PM, Jayson Adams jay...@circusponies.com wrote: On Aug 11, 2012, at 11:05 AM, Alex Kac wrote: File a bug on that doc then. The docs are so big

Re: PI-iOS 2.51.19 Log for Taleo's iPhone

2012-08-10 Thread Alex Kac
. Let me know if it helps. Philippe On 2012-08-09, at 20:15, Alex Kac a...@webis.net wrote: Correct - the AM/PM text in there causes it to fail. The question is - why is it doing that? I see explicitly in our code we're setting the format we want the text to be made: //rename our

Simple date format problem? iOS 5

2012-08-09 Thread Alex Kac
We archive our database files and use the following code to name them. We've been using the same code for about 3 years without any issues but today I have one user that is exhibiting very strange results. I'm assuming I'm missing something very basic, simple, but I'm just not seeing it. Here

Re: Simple date format problem? iOS 5

2012-08-09 Thread Alex Kac
= [[[NSLocale alloc] initWithLocaleIdentifier:@en_US] autorelease]; (I'm not sure whether [NSLocale systemLocale] would work as well; I'm copying this from some working code of mine that generates ISO-8601 date strings.) —Jens Alex Kac - President and Founder Web Information Solutions, Inc

Given NSString containing a letter like Ç, how do I convert that to a C?

2012-07-21 Thread Alex Kac
I'm creating an index for a table that we're sorting. Sorting using localized compare will properly compare ç with c. But then my index shows both c and ç. Given that I'm simply taking the first character of the string, how can I get the letter C when the string starts with Ç?

Re: Given NSString containing a letter like Ç, how do I convert that to a C?

2012-07-21 Thread Alex Kac
Yup. That's what I was looking for. The word Folding just didn't register with me as what I was looking for as I searched the docs. Thanks! On Jul 21, 2012, at 8:57 PM, David Duncan david.dun...@apple.com wrote: On Jul 21, 2012, at 6:26 PM, Alex Kac a...@webis.net wrote: I'm creating

Re: Sandboxing. WTF?

2012-05-30 Thread Alex Kac
. Alex Kac - President and Founder Web Information Solutions, Inc. Patience is the companion of wisdom. --Anonymous ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

Re: Sandboxing. WTF?

2012-05-30 Thread Alex Kac
The only ones I know of are iCloud and gamecenter - stuff that works with their network. I can understand their thinking for that. On May 30, 2012, at 4:30 PM, Jean-Daniel Dupas wrote: It would be true if Apple didn't start to limit availability of some API to sandboxed application

Re: iOS app launching speed

2012-05-15 Thread Alex Kac
! Your usage is super important to us, so just hang on until we actually finish setting everything up. It’s almost ready now…” Alex Kac - President and Founder Web Information Solutions, Inc. Forgiveness is not an occasional act: it is a permanent attitude. -- Dr. Martin Luther King

Re: Animating only one axis of a UIView move?

2012-04-09 Thread Alex Kac
your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. The optimist proclaims that we live in the best of all possible worlds; and the pessimist fears this is true

Make CoreData clean itself up

2011-11-30 Thread Alex Kac
left the database in a suspect state. So my question is, is there a good way to force Core Data to clean itself up and nullify or do something with dangling references to objects? I'm not sure how to do that programmatically as how do you test beyond causing an exception. Alex Kac - President

Re: Make CoreData clean itself up

2011-11-30 Thread Alex Kac
On Nov 30, 2011, at 2:39 PM, Jerry Krinock wrote: On 2011 Nov 30, at 12:09, Alex Kac wrote: a cascade delete from the parent object and a nullify from the inverse that should work And it does…except when it doesn't. To put it in perspective we have a few hundred thousand users

Re: How to detect clicks outside of modal window?

2011-11-02 Thread Alex Kac
, they will be badly rewarded :). Anyway I need it from Leopard. Is that really so hard to do such a trivial thing in Cocoa??? Alex Kac - President and Founder Web Information Solutions, Inc. It is useless for sheep to pass a resolution in favor of vegetarianism while wolves remain of a different

Re: C struct and __unsafe_unretained

2011-10-30 Thread Alex Kac
to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. Champions aren't made in the gyms. Champions are made from something they have deep inside of them - a desire, a dream, a vision. They have last-minute stamina, they have to be a little faster, they have to have

Re: Does anyone else dislike Xcode 4?

2011-07-24 Thread Alex Kac
There are a lot of people who don't care for Xcode 4 for a variety of reasons: its different, its a one window interface, its missing support for 3rd party NIBs, etc… Personally at my company we all are pretty much in agreement that we love Xcode 4. Its not perfect. Its slower than it should

Re: More on drawRect not getting called

2011-07-24 Thread Alex Kac
Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. If at first you don't succeed, skydiving is not for you. -- Francis Roberts

Re: who is currently the first responder? (iOS)

2011-06-29 Thread Alex Kac
File a doc bug :) -- Alex Kac CEO/Founder On Jun 29, 2011, at 11:10 AM, Matt Neuburg m...@tidbits.com wrote: Actually it works for more than text fields; another case of poor documentation. m. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com

Re: How to assign a method for touch event to a UIImageView?

2011-06-24 Thread Alex Kac
(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. “Don't forget until too late that the business of life is not business

Drawing an arc fill inside an image

2011-05-26 Thread Alex Kac
I'm not sure what the best way to tackle this is... so I thought I'd ask here. I have an image with a circular button inside of it. I'd like to dynamically fill this button in an arc to show progress much like how when you are on iTunes Store on an iOS and its playing the preview its animating

Re: Drawing an arc fill inside an image

2011-05-26 Thread Alex Kac
performance, and only optimize if needed. Don't try to optimize if it's not actually required! -- Conrad Shultz www.synthetiqsolutions.com On May 26, 2011, at 11:40, Jens Alfke j...@mooseyard.com wrote: [image lockFocus]; …draw stuff… [image unlockFocus]; Alex Kac - President and Founder Web

Re: Has anyone used the VOIP background mode for a non-VOIP app?

2011-05-17 Thread Alex Kac
at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. It is useless for sheep to pass a resolution

Re: Delegate Notification

2011-05-16 Thread Alex Kac
@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://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex

Re: RunLoop Tutorials

2011-05-16 Thread Alex Kac
not sure if you have some better resources for me to follow? Best, Bing On Tue, May 17, 2011 at 3:44 AM, Alex Kac a...@webis.net wrote: To be fair, a new Cocoa developer doesn't need to worry about runloops. Cocoa handles all that for you in most cases. Its good to understand when you

Weird view description problem

2011-05-06 Thread Alex Kac
OK this is weird. On iOS Simulator - no issue. Debugging on device, with the latest XCode 4 release, device being iPhone 4 with the latest OS, I get this when printing a view: + f\u2020\u201e\u00af\u00a9\u201e\u2021\u02d8\u00a7 retain:16 - tag:0 - bgcolor:(r:0 g:0 b:0 a:1.00) bounds: x:0

Re: Weird view description problem

2011-05-06 Thread Alex Kac
Aha, nevermind. I found the problem. It was a UserVoice sub-project that had a category I just couldn't find it. On May 6, 2011, at 9:39 AM, Alex Kac wrote: OK this is weird. On iOS Simulator - no issue. Debugging on device, with the latest XCode 4 release, device being iPhone 4

Re: viewWillDisappear not being called

2011-04-25 Thread Alex Kac
with IB - nothing fancy) and presented modally. To duplicate, show a view modally and press the home button. Alex Kac - President and Founder Web Information Solutions, Inc. “Don't forget until too late that the business of life is not business but living.” -- B.C. Forbes

Re: UI Design on iPad

2011-04-21 Thread Alex Kac
to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. The optimist proclaims that we live in the best of all possible worlds; and the pessimist fears this is true. -- James Clabell ___ Cocoa-dev mailing list (Cocoa-dev

Changed Properties

2011-03-23 Thread Alex Kac
I love using CoreData and one of my favorite features is its ability to get me the changed values between commits without any work on my end. I know I can do it the old fashioned way of putting bools and setter methods that mark those booleans as dirty on changes, but I was curious if there was

Re: crash in initWithCoder

2011-03-16 Thread Alex Kac
) 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://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac

Re: UISearchDisplayController in UIToolbar on iPad

2010-12-25 Thread Alex Kac
On Dec 24, 2010, at 2:22 PM, Matt Neuburg wrote: On Fri, 24 Dec 2010 12:12:32 -0600, Alex Kac a...@webis.net said: we have a view controller that we use with a UISearchDisplayController that sits in a UIToolbar on an iPad No, it doesn't. A UISearchDisplayController is a controller

Re: UISearchDisplayController in UIToolbar on iPad

2010-12-25 Thread Alex Kac
On Dec 25, 2010, at 12:27 PM, Matt Neuburg wrote: On Dec 25, 2010, at 9:52 AM, Alex Kac wrote: Again - the popover? You never said anything up to this point about a popover, so how does it come in? Fromt the UISearchDisplayController. It presents the popover for us in this case

UISearchDisplayController in UIToolbar on iPad

2010-12-24 Thread Alex Kac
Here is the situation. On iOS you must listen to memory warnings and handle them properly. So we have a view controller that we use with a UISearchDisplayController that sits in a UIToolbar on an iPad. If a memory warning occurs while the popover is up, the popover goes away, the search bar

Re: Dictionary keyed by a few sparse integers?

2010-10-29 Thread Alex Kac
) 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://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac

AM/PM letter UNICODE issues

2010-10-18 Thread Alex Kac
I'm fairly certain my problem here is that I wasn't thinking about unicode terms here. What we are trying to do: Shorten the AM/PM to just the first character in Western Languages so that a time is shown as 1:30a. NSDateFormatter* formatter = [[NSDateFormatter alloc] init];

Re: AM/PM letter UNICODE issues

2010-10-18 Thread Alex Kac
this is explicitly for users who are showing their times in AM/PM. On Oct 18, 2010, at 1:41 PM, glenn andreas wrote: On Oct 18, 2010, at 12:19 PM, Alex Kac wrote: I'm fairly certain my problem here is that I wasn't thinking about unicode terms here. What we are trying to do: Shorten the AM/PM

Re: AM/PM letter UNICODE issues

2010-10-18 Thread Alex Kac
Right - some don't. We do take care of those situations. But many do and its nice to get that from OS itself. On Oct 18, 2010, at 1:48 PM, A.M. wrote: On Oct 18, 2010, at 2:41 PM, glenn andreas wrote: On Oct 18, 2010, at 12:19 PM, Alex Kac wrote: I'm fairly certain my problem here

Re: AM/PM letter UNICODE issues

2010-10-18 Thread Alex Kac
character. Alex Kac - President and Founder Web Information Solutions, Inc. If at first you don't succeed, skydiving is not for you. -- Francis Roberts ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Re: AM/PM letter UNICODE issues

2010-10-18 Thread Alex Kac
- Hash: SHA1 On 10/18/10 10:19 AM, Alex Kac wrote: This works in Western languages just fine. However in languages like Korean it does not work giving a random character seemingly. From reading on this list over time I believe its because I'm just getting one part of a multi-part character

Re: JDBC from Cocoa or the like

2010-10-05 Thread Alex Kac
to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. Forgiveness is not an occasional act: it is a permanent attitude. -- Dr. Martin Luther King ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

Re: CGLayer resolution on iPhone with Retina display

2010-08-29 Thread Alex Kac
Ah, I just read the Layer part and didn’t think of a CGLayer. You are right - a CGLayer has nothing in common. That’s what I get for reading too quickly. On Aug 28, 2010, at 9:18 PM, Matt Neuburg wrote: On Aug 28, 2010, at 1:37 PM, Alex Kac wrote: I believe you need to set the scale

Re: CGLayer resolution on iPhone with Retina display

2010-08-28 Thread Alex Kac
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://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web

Re: Get an escape sequence out of an NSString

2010-08-14 Thread Alex Kac
Nevermind. I figured out my problem. I had a space in front of the character and it was late and I didn't recognize the decimal as I know it better in hex. -- Sent from my mobile phone (please excuse any mistakes or short response I might have made) On Aug 13, 2010, at 10:05 PM, Alex Kac

Get an escape sequence out of an NSString

2010-08-13 Thread Alex Kac
Given an NSString @\ue001 like this, how does one get the value into an NSInteger so that its equal to 0xe001? I've tried converting it to an NSData with an encoding of NSUTF16BigEndianStringEncoding, but I'm not getting what I expect. Experience has taught me that usually its because I'm being

Re: loading French strings being in English language

2010-07-31 Thread Alex Kac
/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. The optimist proclaims that we live in the best of all possible worlds; and the pessimist fears

Re: loading French strings being in English language

2010-07-31 Thread Alex Kac
your app's UI labels to any string you desire. It is a bit more work for you to implement. However, OS supplied services, such as copy/paste will still have the locale strings of the OS is set to. Hope that helps, John Joyce On Jul 31, 2010, at 6:26 PM, Alex Kac wrote: Well

Re: loading French strings being in English language

2010-07-31 Thread Alex Kac
request bug on the iOS. Regards, John Joyce On Jul 31, 2010, at 8:25 PM, Alex Kac wrote: Right - honestly its just a few people here and there who ask for it for business reasons. If there was an easy way - such as NSUserDefault we could set that would tell the OS - use our English NIBs

Re: [iPhone] UIMenuController not showing up

2010-06-24 Thread Alex Kac
://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. In the Country of the Blind, the one-eyed man is king. --Desiderius Erasmus ___ Cocoa

Re: Base64 encoding (iPhone)

2010-06-01 Thread Alex Kac
-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. You cannot build a reputation on what you intend to do. -- Liz Smith ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com

Re: iPhone/iPad: Desktop wallpaper can't be set.

2010-05-21 Thread Alex Kac
Alex Kac - President and Founder Web Information Solutions, Inc. To educate a person in mind and not in morals is to educate a menace to society. -- Theodore Roosevelt ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Re: iPhone/iPad: Desktop wallpaper can't be set.

2010-05-21 Thread Alex Kac
In many ways true. This is not one of them. I can see many valid reasons to do this. On May 21, 2010, at 11:13 AM, Kyle Sluder wrote: On Fri, May 21, 2010 at 7:52 AM, Alex Kac a...@webis.net wrote: Don't limit the users just because you don't want something. Its not being forced. One

Re: How to get tapped text from UITextView

2010-05-01 Thread Alex Kac
It would be simpler to save the CGRect you calculate per word in an array and just enumerate the rects for the point tapped. -- Alex Kac On my mobile device so please excuse the brevity. On May 1, 2010, at 12:19 AM, Sasikumar JP jps...@gmail.com wrote: Alex, I can draw the text

Re: How to get tapped text from UITextView

2010-04-30 Thread Alex Kac
You are going to have to draw the text yourself using NSString's drawing methods and then use the regular touch events and CGRects to do that. Or use a UIWebView with links to each word that you recognize. -- Alex Kac On my mobile device so please excuse the brevity. On Apr 30, 2010, at 12

Re: Wondering about that iPad page curling

2010-04-06 Thread Alex Kac
laurent.daude...@gmail.com Photo Gallery Store: http://laurentdaudelin.shutterbugstorefront.com/g/galleries On Apr 5, 2010, at 18:32, Alex Kac wrote: Except CIFilter doesn't exist on the iPad in a public SDK setting. On Apr 5, 2010, at 8:22 PM

Re: Wondering about that iPad page curling

2010-04-06 Thread Alex Kac
/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. The optimist proclaims that we live in the best of all possible worlds; and the pessimist fears this is true. -- James Clabell

Re: Wondering about that iPad page curling

2010-04-05 Thread Alex Kac
/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. In the Country of the Blind, the one-eyed man is king. --Desiderius Erasmus

Re: Clickable UILabel - iPhone

2010-03-10 Thread Alex Kac
%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. You cannot build a reputation on what you intend to do. -- Liz Smith ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: Removing quit button from dock menu

2010-02-23 Thread Alex Kac
No offense but that type of attitude and comment is unhelpful and one reason cocoa devs sometimes have a not-so-nice reputation. I can think of several types of apps that need this. Kiosk apps, security apps, corporate apps, and so forth. I beg of you to stick to the technical on this

Re: Removing quit button from dock menu

2010-02-23 Thread Alex Kac
] and not call super. That doesn't get rid of the menu item, but it does prevent it from quitting the app. And I guess you might beep, too. Paul Sanders. - Original Message - From: Alex Kac a...@webis.net To: Dave Carrigan d...@rudedog.org Cc: cocoa-dev@lists.apple.com Sent

Re: iPhone - Device Notifications Status

2010-01-20 Thread Alex Kac
comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc

Re: iPhone - Device Notifications Status

2010-01-20 Thread Alex Kac
dialog? Regards Mick On 20 Jan 2010, at 16:03, Alex Kac wrote: [[UIApplication sharedApplication] enabledRemoteNotificationTypes] != UIRemoteNotificationTypeNone On Jan 20, 2010, at 8:36 AM, Mick Walker wrote: Hello, Could anyone tell me how I can tell if push notifications

Re: if statement causing 32 Byte leak?

2010-01-10 Thread Alex Kac
the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. There will always be death

Re: if statement causing 32 Byte leak?

2010-01-09 Thread Alex Kac
(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. Forgiveness is not an occasional act: it is a permanent attitude. -- Dr

Re: Why is [NSArray arrayWithObjects:] failing for me?

2010-01-04 Thread Alex Kac
comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc

Re: Why is [NSArray arrayWithObjects:] failing for me?

2010-01-04 Thread Alex Kac
. It should be easy enough to remember and help me avoid this problem in the future. With respect to Eric, that's part of the rule, the rules are in the memory management guide and it's better to read them in full from the apple documentation than paraphrase them. Alex Kac - President

Re: iPhone Creating a months view

2010-01-04 Thread Alex Kac
/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. The optimist proclaims that we live in the best of all possible worlds; and the pessimist fears this is true. -- James Clabell

Re: [iPhone] Sample code for live camera stream?

2009-12-16 Thread Alex Kac
-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. Patience is the companion of wisdom. --Anonymous

Re: [iPhone] Sample code for live camera stream?

2009-12-16 Thread Alex Kac
://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. Patience is the companion of wisdom. --Anonymous

Re: [iPhone] Sample code for live camera stream?

2009-12-15 Thread Alex Kac
) 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://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac

Re: UIDatePicker in landscape - displaying items moving into position weirdness

2009-12-11 Thread Alex Kac
(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. The optimist proclaims that we live in the best of all possible worlds

Re: UIDatePicker in landscape - displaying items moving into position weirdness

2009-12-11 Thread Alex Kac
it? On Fri, Dec 11, 2009 at 3:55 PM, Eric E. Dolecki edole...@gmail.com wrote: What do you mean initialized when in landscape mode? (I'm still green here). How can I make sure that happens? On Fri, Dec 11, 2009 at 3:41 PM, Alex Kac a...@webis.net wrote: I found that this control works fine

Re: UIDatePicker in landscape - displaying items moving into position weirdness

2009-12-11 Thread Alex Kac
[self createRelativeTriggerTimeSpanPicker]; } } On Dec 11, 2009, at 2:55 PM, Eric E. Dolecki wrote: What do you mean initialized when in landscape mode? (I'm still green here). How can I make sure that happens? On Fri, Dec 11, 2009 at 3:41 PM, Alex Kac

Re: [iPhone] UINavigationController and UINavigationBar

2009-12-09 Thread Alex Kac
requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information

Re: [iPhone] UINavigationController and UINavigationBar

2009-12-08 Thread Alex Kac
/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. There will always be death and taxes; however, death doesn't get worse every year. -- Anonymous

Re: iPhone CLLocation Accuracy?

2009-11-11 Thread Alex Kac
(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. ___ Cocoa-dev mailing list (Cocoa

Re: iPhone: NSOperation and UITableVIews

2009-11-09 Thread Alex Kac
) 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://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President

Re: Asynchronous downloading again

2009-11-02 Thread Alex Kac
/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. You cannot build a reputation on what you intend to do. -- Liz Smith

Re: UITextField formatting for IP Address

2009-10-17 Thread Alex Kac
the closest working idea. On desktop it's easy. So I am trying a variety of things and hoping someone has a better idea. -- CEO WebIS Sent from my phone On Oct 16, 2009, at 11:46 PM, Andrew Farmer andf...@gmail.com wrote: On 16 Oct 2009, at 17:54, Alex Kac wrote: Here is my code, btw. It works OK

UITextField formatting for IP Address

2009-10-16 Thread Alex Kac
On desktop Cocoa I can put in a custom formatter on a textfield and get what I'm looking for. On iPhone, I can say I'm a bit confused as to the best way to handle this. Given a UITextField and my desire to have the user type in an IP address, it sounds like it could be simple, but I can't

Re: UITextField formatting for IP Address

2009-10-16 Thread Alex Kac
NO; } } return YES; } On Oct 16, 2009, at 7:26 PM, Alex Kac wrote: On desktop Cocoa I can put in a custom formatter on a textfield and get what I'm looking for. On iPhone, I can say I'm a bit confused as to the best way to handle this. Given a UITextField and my desire to have the user type in an IP

Re: Mixed font sizes in a UILabel?

2009-10-15 Thread Alex Kac
at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. You cannot build a reputation on what you intend

NSTimeZone questions

2009-10-14 Thread Alex Kac
googled it, but NSTimeZone doesn't seem to be talked about much. Alex Kac - President and Founder Web Information Solutions, Inc. Patience is the companion of wisdom. --Anonymous ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: Returning to app after phone call

2009-10-13 Thread Alex Kac
/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. Forgiveness is not an occasional act: it is a permanent attitude. -- Dr. Martin Luther King ___ Cocoa-dev

Re: real verses Virtual memory

2009-10-10 Thread Alex Kac
Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. To educate a person in mind and not in morals is to educate a menace to society. -- Theodore Roosevelt

Re: reading (parsing) CSV (or Excel) data

2009-10-02 Thread Alex Kac
the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/alex%40webis.net This email sent to a...@webis.net Alex Kac - President and Founder Web Information Solutions, Inc. You cannot build a reputation on what you

Re: reading (parsing) CSV (or Excel) data

2009-10-02 Thread Alex Kac
Yes! In any case, I'm sure libcsv is more powerful and correct, but the category there worked for my purposes working with several cloud services. On Oct 2, 2009, at 3:16 PM, I. Savant wrote: On Oct 2, 2009, at 4:15 PM, Alex Kac wrote: Here is something I use that has worked for me fairly

<    1   2   3   >