Re: No more .ibplugins in Xcode 4, so now what...?

2011-05-16 Thread Alexander Zvyagin
> Thanks for the clarification. But the developer still had to transition > _his code_ from non-GC to either 1) GC-only and drop 32 bit (likely not > desirable) or 2) dual mode. > I think most developers would have accepted a loss of _binary_ > compatibility of their ibplugins, after all the targ

No static functions with linking .a to .dylib

2011-05-13 Thread Alexander Zvyagin
Hello, all! Please help me to link compiled *.a modules to *.dylib library. Currently linked file has runtime errors with no static functions found from .a module by .dylib library: +[NSString stringStaticFunction]: unrecognized selector sent to class 0x12345678 +[NSString stringStaticFunction]

Re: NSImageView mouseUp problem?

2011-03-05 Thread Alexander Zvyagin
> What can I do to receive this -mouseUp event [losted by NSImageView] ? -mouseUp is coming only custom view is LOWER any existing NSImageView inside Interface Builder xib document (Mac OS X 10.6.6). I think this mean NSImageView doesn't send -mouseUp to next responder. Is this a bug? * Note

NSImageView mouseUp problem?

2011-03-05 Thread Alexander Zvyagin
Hi, All! I has a custom view must show the mouseEntered state and mousePressed state in different pictures. If mouse press is inside this view but mouse release is outside, my view doesn't receive -mouseUp event: --- cut --- >>> press is really there <<< // [-mouseDown] { 360 x 126} NSImageVi

Properly using of "arrangedObjects" in NSArrayController

2010-12-22 Thread Alexander Zvyagin
Hi, All! Tell me please, what I do wrong or miss to get in my mind? I mean the NSArrayController is for synchronization between two arrays, or between keyPaths of items in two arrays. Now i'm trying to bind the Model 'array' property to custom 'array' property in class View using NSArrayContro

xcodebuild errors during running from under makefiles

2010-12-17 Thread Alexander Zvyagin
Hello, All! If xcodebuild utility tell about a strange errors while running from inside makefiles like following: xcodebuild stdout "Couldn't discover the 'gcc-4.2' compiler's built-in search paths ..." Compiler: /Developer/Library/Xcode/Plug-ins/GCC 4.2.xcplugin/Contents/Resources

IBPlugin with Core Animated button.

2010-06-23 Thread Alexander Zvyagin
Hi, All! I'm try to making Core Animated button encapsulated to Interface Builder Plugin. >From inside, this button is NSControl created as layer-backed NSView and >filled with CALayers. All images of button states are draw by CALayers using mouseEvents (not by a simple drawRect): this are als