Hummm... looks like my approach has flaw.
Thanks a ton,
Cocoa.learner
On Thu, Mar 11, 2010 at 11:52 PM, Quincey Morris <
quinceymor...@earthlink.net> wrote:
> On Mar 11, 2010, at 06:50, cocoa learner wrote:
>
> > And on this custom view I have a progress bar, that progressbar gets it's
> > progr
On Mar 11, 2010, at 06:50, cocoa learner wrote:
> And on this custom view I have a progress bar, that progressbar gets it's
> progress value from a NSThread. And I am using following function render the
> progressbar, from NSThread -
>
>
> [progBar performSelectorOnMainThread: (display) withObje
Hi All,
I have subclassed a custom view in following way -
@implementation AppContentView
- (id)initWithFrame: (NSRect)frame
{
self = [super initWithFrame:frame];
if (self)
{
// Initialization code here.
}
return self;
}
- (void)drawRect:(NSRect)rect
{
[[NSCo