Problem on NSPopUpButton Class

2009-11-23 Thread charisse napeÿfffff1as
Hello, Is there a known problem with subclassing an NSPopUpButton class in Snow Leopard 10.6.2 ? Problem: subclassed popup button cannot be disabled sometimes. Scenario: Instead of using NSPopUpButton directly, I created a subclass of NSPopUpButton named MyPopUpButton because there are other t

Re: Problem on NSPopUpButton Class

2009-11-23 Thread charisse napeÿfffff1as
temAtIndex : (int) index #endif { if (index + 2 <= [self numberOfItems]) { [super selectItemAtIndex:index]; } } @end From: Kyle Sluder To: charisse napeÿf1as Cc: cocoa-dev@lists.apple.com Sent: Tuesday, November 24, 2009 12:54:26 Subj

Re: Deprecated APIs

2010-03-18 Thread charisse napeÿfffff1as
Hello, I already found the cause of my problem. The api I used for 10.6 has a NS_BLOCKS_AVAILABLE condition that is why my app crashes. Its not because of my OS Version conditions Please close this issue. From: Greg Parker To: Steve Christensen Cc: cocoa-

Cant read second table from same sqlite database iphone

2010-04-10 Thread charisse napeÿfffff1as
Hello All, I am having trouble reading the second table from my database because it returns nothing even if there is data inside it. I have a function below - (NSMutableArray*) getRegions { NSMutableArray * data = [[NSMutableArray alloc] init]; const char * sql = "SELECT * FROM Regions

Re: Cant read second table from same sqlite database iphone

2010-04-10 Thread charisse napeÿfffff1as
I was able to successfully retrieve data on the first table. But I can't seem to retrieve from the second table. I know it has data inside it because I used an SQLite Browser to view the data. I also tried performing queries there and it worked fine. Only when I used the queries in the code that

Re: Cant read second table from same sqlite database iphone

2010-04-11 Thread charisse napeÿfffff1as
Farmer To: charisse napeÿf1as Cc: cocoa-dev@lists.apple.com Sent: Monday, April 12, 2010 4:10:21 Subject: Re: Cant read second table from same sqlite database iphone On 10 Apr 2010, at 18:02, charisse napeÿf1as wrote: >//get the name and the score >

Drawing a path and making an object follow that path IPHONE

2010-04-12 Thread charisse napeÿfffff1as
Hello, I'm a newbie at iphone development and I was wondering if somebody can point out how to create a simple app where I can draw a simple path with loops or curves from point a to b and then make an object follow that path from a to b. Anybody can give me a sample code or something so I can

Including UIImageView to Scroll down with UITableView

2010-05-03 Thread charisse napeÿfffff1as
Hello Guys, I have a View Controller that uses the UITableView delegate but then I want to place above the UITableView, a UIImageView but I can't seem to include it in the scrolling. When I try to scroll down, only the UITableView moves. Anybody knows how I can solve this problem? Thanks, Char

Pushing to the left (Navigation Controllers)

2010-06-17 Thread charisse napeÿfffff1as
Hello All, Anybody here knows how to push view controllers to the left? I am creating a Hebrew app and I would like the pushing of view controllers to start from the left instead of a normal right push. Any help would be appreciated Thanks, Charisse _

Saving a rotated image

2011-08-09 Thread charisse napeÿfffff1as
Hello All, Anybody knows how to save a rotated image to the Documents folder in iphone? Given a variable number of degrees, how to save that rotated image in file, keeping its current rotation angle? thanks, Charisse ___ Cocoa-dev mailing list (Cocoa

Re: Saving a rotated image

2011-08-11 Thread charisse napeÿfffff1as
I can already rotate an image. But I don't know how to save it in that current state. From: Mike Abdullah To: charisse napeÿfffff1as Cc: "cocoa-dev@lists.apple.com" Sent: Wednesday, August 10, 2011 11:23 PM Subject: Re: Saving a rotated i

Embed time stamp on recorded video

2011-09-05 Thread charisse napeÿfffff1as
Hello all, Is there a way to embed the time stamp in recorded video in iphone? Because I want to see the time still when I play the recorded video. Thanks, Charisse ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requ

Deprecated APIs

2010-02-23 Thread charisse napeÿfffff1as
Hello, I am not sure if this problem has already been submitted but how do I define two APIs, one that is supported from Leopard down and another that is only supported in Snow Leopard if I only have one binary for all OSes? Below is a snippet of my code // below should be performed if the OS

Re: Deprecated APIs

2010-02-23 Thread charisse napeÿfffff1as
I guess so. But is it still safe to use depracated APIs? From: Andreas Mayer To: cocoa-dev@lists.apple.com Sent: Tuesday, February 23, 2010 20:29:47 Subject: Re: Deprecated APIs Am 23.02.2010 um 11:09 Uhr schrieb charisse napeÿf1as: > I am not sure

Overriding target and action of backBarButtonItem

2011-01-14 Thread charisse napeÿfffff1as
Hello Guys, I have trouble setting the action for my backbarbutton item. No matter how I set it, my selector does not get called. Here is my code below: UIBarButtonItem *backB = [[UIBarButtonItem alloc] init]; backB.title = @"Back"; backB.action = @selector(disconnect:); self.n

Re: Overriding target and action of backBarButtonItem

2011-01-14 Thread charisse napeÿfffff1as
Hello Matt, Yeah. that's what I also thought. I just needed somebody who knows more to actually confirm it. Anyway, So how can I customize what happens when the user presses the back button? THanks, Charisse From: Matt Neuburg To: charisse nape?f1as

Sending multiple files via Bluetooth using GameKit

2011-01-19 Thread charisse napeÿfffff1as
Hello Guys, Is there any way I can send multiple files via Bluetooth transfer using GameKit? I have already done the single file transfer but how about if I send multiple files without sacrificing speed? Can I do it synchronously? I am new to this so maybe somebody can point me to the right di

Safari on Smart Card enrollment

2013-10-08 Thread charisse napeÿfffff1as
Hello All, Does Safari support smart card enrollment? I have tried to use safari to install certificate into the smart card but it seems to just save the cert in a file by default. Is this the default behavior? In Mozilla, I am able to install the certificate into the smart card so I am wonderi