0
votes
1answer
19 views
How to compress jpeg image with Cocoa?
I have an jpeg image and I want to be able to incrementally compress it using Cocoa/Core Image/Core Graphics. For example, I have A.jpg (3MB), I compress A and get B.jpg (1MB), co …
2
votes
1answer
36 views
CG/NSPoint-like integer tuple type?
Is there an appropriate structure provided in the Apple foundation kits to represent discrete coordinate systems? I know I can just use the integral component of NSPoint and by co …
0
votes
1answer
15 views
CALayer filters and bounds
Hi,
I'm just starting writing some Core Animation code and I've just spent a frustrating day trying to figure out a particular problem.
I have two layer-backed views that togethe …
0
votes
1answer
24 views
Registering an icon for my application’s document type.
I'm trying to register an icon for my app's document type. After reading Declaring New Uniform Type Identifiers and looking at /Developer/Examples/Sketch I came up with something l …
0
votes
1answer
21 views
Firefox Cocoa Plugin
I`ve created simple hello world-like plugin which draws red box.
Аfter embedding into xulrunner application the plugin works almost fine. Xulrunner application successfully redraw …
0
votes
2answers
34 views
Stretch PNGs smoothly in Cocoa AppKit
In questions like this one it shows how to use UIKit's
-(UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight
to stretch a PN …
0
votes
1answer
34 views
Application exit event
Hi all,
I am developing an application in cocoa .My application shows a pop up sheet initially .Now i need to know which event is fired when we try to exit the application by righ …
2
votes
6answers
187 views
Is if(obj && obj != nil) correct and necessary?
Two parts to this question
1) Is this understanding of what's going on correct?
"if (obj)" is testing to see if the pointer is not 0x0, aka set to an integer memory address
"if (o …
0
votes
1answer
28 views
Cocoa Distributed Objects
Hello,
I've given myself a headache trying to figure out how to run this Distributed Objects demo. I can run it just fine locally on the same machine.
Here's the situation. I h …
-2
votes
2answers
35 views
A simple send and receive program in xcode
Hiyee...doing any one knows where to find a simple send and receive program so that can communicate with each other in MAC...And it's in cocoa language
1
vote
1answer
47 views
How to create an overlay window in Java?
I'm trying to create a HUD style display for a foreign application.
To do this, I'd need to make a transparent overlay window, that would be placed on top
of the window of the for …
0
votes
3answers
38 views
How can I check if a WebView URL is a local file??
Hi guys,
I have this question that is unsolved for me.... I need to check if the current URL of my webview is a local file in the Documents directory of my app....how can I do this …
1
vote
1answer
25 views
How to find the NIBs in a project that use a specific class?
Suppose I have a view derived class named MyView. In the same Xcode project MyView is defined, I have many NIBs. Some of the NIBs have a Custom View with the class set to MyView.
…
1
vote
3answers
78 views
Difference between @synthesize and @dynamic. [closed]
Possible Duplicate:
@synthesize vs @dynamic, what are the differences?
Hi,
This is my interface file.
@interface Person : NSObject {
UIImage *pImage;
UITextField …
0
votes
1answer
23 views
Preventing an application from being moved between spaces
Working on an application that contains legacy Carbon code (mixed with some Cocoa). It is a full screen app (not technically, it just draws itself as though it were) that hides the …
