Tagged Questions

1
vote
1answer
234 views

How do I programmatically change a custom view object's member variables?

I appreciate you taking the time to read this and hopefully help me out! I am writing my first program in Xcode 4, using Objective-C and Cocoa for the first time. I have been following the ...
1
vote
1answer
161 views

Cocoa draw noise

Is it possible to draw some noise on top of a rect I filled using NSRectFill? I need to make my app that draws a custom title bar look wonderful on 10.7 before release, and to make it look a little ...
0
votes
1answer
51 views

switching to another custom view

i am just new to objective-c programming. now, i am creating a cocoa game application. like many game apps, the game that i created has multiple views. i have already prepared the custom view, and ...
0
votes
2answers
210 views

Is setNeedsDisplay *always* repainting?

I wrote a little custom-view-application using cocoa. And later (yes, i know it's bad) I just asked myself: Would this work for cocoa touch as well? Of course id did not work instantly, I had to ...
0
votes
1answer
37 views

Repeating a custom view several times

I really have almost no idea how I can even begin to do this so I'll just explain it. I have a custom view that holds another, smaller view. Those two views are entirely built in IB, the main one has ...
0
votes
1answer
331 views

Drawing an “NSView” to a Custom-View - How? Am I taking the right approach?

I'm using Objective-C and Cocoa, whilst developing for Mac OS X - so not the iPhone/Cocoa Touch. (That said, I'd be interested if it was the same procedure for the iPhone) I'm working on a ...
0
votes
1answer
490 views

NSColorWell subclass not getting mouseMoved events

I'm trying to implement a color picker in my Cocoa app. (Yes, I know about NSColorPanel. I don't like it very much. The point of rolling my own is that I think I can do better.) Here's a picture of ...