0
votes
0answers
1 views
Giving an NSTextView some padding/a margin.
How would I give a NSTextView some padding/a margin to the left?
I know how you do it in a NSTextField (by subclassing NSTextFieldCell) but how do you do it in a NSTextView?
0
votes
4answers
308 views
round NSDate to the nearest 5 minutes
For example I have
NSDate *curDate = [NSDate date];
and its value is 9:13 am. I am not using year, month and day parts of curDate.
What I want to get is date with 9:15 time value; If I have time …
2
votes
1answer
18 views
NSShadow with a NSButton subclass
Here's My Code:
- (void)drawRect:(NSRect)dirtyRect {
// Drawing code here.
// Create the Gradient
NSGradient *fillGradient = nil;
if (mouseIsDown)
fillGradient = [[NSGradient …
0
votes
1answer
20 views
Use NSFilehandle to serial-port communication ,why don’t receive NSFilehandle’s notification .
my source-code as belowed :
a part of source-code as belowed :
- (id)init
{
NSFileHandle *fh =[[NSFileHandle alloc] initWithFileDescriptor:myfileDescriptor closeOnDealloc:YES];
…
0
votes
0answers
12 views
How to get the current pic of swf showing in a safari webpage?
Now I have get flash url ,I want to get its current pic , How to do ? Thank you very much!
0
votes
1answer
12 views
How to set up gcov for code coverage analysis in iPhone SDK?
Hi,
I've recently begun unit testing an app I write for the iPhone. I have the basics of creating my own tests down, even if it seems a little sub-optimal. I am, however, having real trouble setting …
0
votes
0answers
4 views
Auto-persist removing objects from NSArrayController with CoreData
Hi!
I have a NSTableView with one column bound to NSArrayController representing a collection of entities from a NSManagedObjectContext. I also have a "remove" button that is connected to …
0
votes
3answers
27 views
Stop NSThread while downloading
I have an iPhone app, where I'm displaying a tableview, that's loaded from an RSS feed. When the view is loaded, I call this method to run in a new NSThread:
- (void)start:(NSURL*)url {
…
1
vote
1answer
22 views
Getting a List of Applications Capable of Opening a Type of File
I'm trying to get a list of applications that are capable of opening a type of file. So far I've been able to get the name of a single application using NSWorkspace's getInfoForFile:application:type: …
0
votes
2answers
10 views
Programtically Closing an NSWindow When it looses focus Cocoa OSX
I am making an image picker that will display an n by n grid of selectable button when the picker is popped up. This grid of buttons will be contained within an NSWindow but I would like for the …
0
votes
0answers
5 views
Why does NSURLCredential require both an identity and a certificate list?
In the initWithIdentity:certificates:persistence: method, what is the purpose of the certificates argument? The identity has a certificate associated with it, so which other certificates am I …
0
votes
2answers
22 views
Cannot find NSExpression while compiling for OSX 10.6
I am building a very simply Core Data + Core Animation application.
While compiling for OSX 10.6, 64 bits, Xcode keeps throwing the error:
…
1
vote
2answers
21 views
How to deterministically release Core Foundation object in Garbage Collected environment?
I use Core Foundation methods in garbage-collected environment. According to documentation call to CFRelease simply decrements reference count but does not release the object:
The difference …
2
votes
3answers
46 views
Encoding issue: Cocoa Error 261?
So I'm fetching a JSON string from a php script in my iPhone app using:
NSURL *baseURL = [NSURL URLWithString:@"test.php"];
NSError *encodeError = [[NSError alloc] init];
NSString *jsonString = …
0
votes
1answer
12 views
Landscape mode and locationInView in opengl es
So today I implement landscape mode for my app. It is an opengl es application. I rotated it 90 degrees. The first thing I notice is that the touches no longer work. The reason being is that the …
