6
votes
4answers
414 views
Mac OS X: Can one process render to another process’s window?
Greetings!
I'm currently porting a web browser plugin from Win32 to MacOSX. One of the features of the plugin is that when the plugin is loaded, it spawns a separate process that …
5
votes
3answers
2k views
Quartz 2D drawRect method (iPhone)
I've got 4 different iPhone/Cocoa/Core Animation/Objective-C books in front of me, along with numerous sample code from the web. Yet somehow I still feel like I'm missing some fun …
4
votes
3answers
936 views
Retrieving a pixel alpha value for a UIImage
I am currently trying to obtain the alpha value of a pixel in a UIImageView. I have obtained the CGImage from [UIImageView image] and created a RGBA byte array from this. Alpha is …
3
votes
1answer
182 views
Change Screen Resolution in Snow Leopard
I've been plugging away at this for a few hours now, and haven't found a good answer. In Leopard, I can programmatically change the screen resolution using Quartz Display Services …
3
votes
2answers
195 views
How to Get the Display Name with the Display ID in Mac OS X?
Hello! I was wondering if you could help me figure out how to progmatically get the Display Name for a monitor by using its Display ID number in Mac OS X (10.5)? A requirement is …
3
votes
2answers
105 views
How high and wide will NSString write?
How do I work out how much large an area drawing an NSString will occupy, i.e. by using:
[string drawAtPoint:p withAttributes:nil];
I ideally need to work this out before its dr …
3
votes
3answers
658 views
Benchmark UIView drawRect: method
Hi,
I am writing an iPhone application in Objective-C that utilizes some custom drawing in views and I would like to benchmark various revisions of my code to see what really help …
3
votes
4answers
925 views
Are most games on the IPhone done with OpenGL ES?
I was just wondering if most games on the iPhone are done in OpenGL ES as opposed to using Quartz and Core Animation. Are Quartz and Core Animation mostly used for just creating s …
3
votes
3answers
2k views
Creating mask with CGImageMaskCreate is all black (iphone)
I'm trying to create an image mask that from a composite of two existing images.
First I start with creating the composite which consists of a small image that is the masking imag …
2
votes
2answers
112 views
Impossible to post-produce the image from the iPhone camera?
On an iPhone 3GS, the image captured by the camera has 2048x1536 pixels. If my math is correct, opening this image on a CGLayer will consume 12.5 MB.
Springboard will terminate an …
2
votes
1answer
265 views
iPhone Object Allocation, GeneralBlock-24 & GeneralBlock-48
Hi All, I'm finishing up my third iPhone App. Cleaning up code and such. I have 3 memory leaks after the launch of the application. These remain constant no matter what I do in the …
2
votes
2answers
474 views
Simple iPhone drawing app with Quartz 2D
I am making a simple iPhone drawing program as a personal side-project.
I capture touches event in a subclassed UIView and render the actual stuff to a seperate CGLayer. After ea …
2
votes
2answers
691 views
How to create a UIImage from the current graphics context?
I'd like to create a UIImage object from the current graphics context. More specifically, my use case is a view that the user can draw lines on. They may draw incrementally. Aft …
2
votes
2answers
1k views
How do I create a grid of icons like the iPhone home screen?
How should I go about creating a UI similar to the Springboard (home screen) on the iPhone? I'd like a grid of evenly spaced buttons with images where I can respond to the button t …
1
vote
1answer
53 views
iPhone: optimized drawing in quartz
I have created a CG context that is 800 pixels wide and 1200 pixels height. I have created CGLayer over this context that has been transformed (scaled, translated and rotated). So, …
