On Jan 21, 2013, at 22:15 , Oleg Krupnov wrote:
> I have a XIB file with some debugging & tweaking window which is only
> needed in the Debug configuration of my project. I can exclude the
> debug code with some #ifdefs, but I would like also to exclude the XIB
> from the release build. Is there
I have a XIB file with some debugging & tweaking window which is only
needed in the Debug configuration of my project. I can exclude the
debug code with some #ifdefs, but I would like also to exclude the XIB
from the release build. Is there a way in Xcode to achieve this?
Thanks!
_
On Jan 21, 2013, at 5:12 PM, Graham Cox wrote:
> My question is, is there a way to directly convert coordinates between two
> unrelated layers in a tree, or are these methods implemented by recursion up
> to a common parent node and then back down to the target layer? If I had some
> hint of ho
Hi all,
Recently I built an (experimental) app around CALayer and friends which
implements a vector schematic editor.
I found that CALayer isn't, not too surprisingly, really a good base for vector
graphics - CAShapeLayer is nice enough but there's nothing for text and I
rapidly ran into probl
On Jan 21, 2013, at 10:14 AM, Dave wrote:
> if (class_RespondsToSelector(myClass,@selector(initWithManager:) == NO)
Off-topic: instead of using the Obj-C runtime’s C API, you can express this as
if ([myClass instancesRespondToSelector: @selector(initWithManager:)]
== NO)
—Jens
___
On Jan 21, 2013, at 12:20 PM, Rick Aurbach wrote:
> It appears to work great, but I find that the class's executeSelector: method
> generates a warning message.
>
>> - (void) executeSelector:(NSTimer*)timer {
>> if(self.target != nil) {
>> if([self.target respondsToSelector:self.sel])
>
On Jan 21, 2013, at 2:20 PM, Rick Aurbach wrote:
> I am attempting to use the RTPTimer wrapper that Gordon Apple contributed to
> this list. (Thanks, Gordon!)
>
> It appears to work great, but I find that the class's executeSelector: method
> generates a warning message.
>
>> - (void) execute
> Ok, I agree that the selector is unknown, but we know from the
> previous line that the target responds to it. So I'd like to
> prevent this particular warning. I'm sure I ought to know how
> do do this, but how do I go about removing this warning message?
> Ideally, I'd like to do this on a file
I am attempting to use the RTPTimer wrapper that Gordon Apple contributed to
this list. (Thanks, Gordon!)
It appears to work great, but I find that the class's executeSelector: method
generates a warning message.
> - (void) executeSelector:(NSTimer*)timer {
>if(self.target != nil) {
>
Hi folks,
just a heads-up that I just pushed v 0.3 of MPWDrawingContext to github:
https://github.com/mpw/MPWDrawingContext
The major enhancements have to do with using blocks for bracketing operations (
save/restore graphics state, shadow on/off, transparency layer begin/end) and
delayed/r
At 6:14 PM + 1/21/13, Dave wrote:
if (class_RespondsToSelector(myClass,@selector(initWithManager:) == NO)
myObj = [[myClass alloc] init];
else
myObj = [[myClass alloc] initWithManager:sel]];
I get a warning on the initWithManager: statement (Obviously), how
to avoid the warn
On Jan 21, 2013, at 10:14 , Dave wrote:
> myObj = [[myClass alloc] initWithManager:sel]];
>
>
> I get a warning on the initWithManager: statement (Obviously), how to avoid
> the warning or otherwise fix it?
You need to #import a header file with an @interface declaration for the
'initW
> myObj = [[myClass alloc] initWithManager:sel]];
Is sel meant to be self?
On Jan 21, 2013, at 1:14 PM, Dave wrote:
> Hi All,
>
> I have the following code:
>
> if (class_RespondsToSelector(myClass,@selector(initWithManager:) == NO)
> myObj = [[myClass alloc] init];
> else
> myObj
On 21 Jan 2013, at 18:14, Dave wrote:
> Hi All,
>
> I have the following code:
>
> if (class_RespondsToSelector(myClass,@selector(initWithManager:) == NO)
> myObj = [[myClass alloc] init];
> else
> myObj = [[myClass alloc] initWithManager:sel]];
>
>
> I get a warning on the initWi
On Jan 21, 2013, at 10:14 AM, Dave wrote:
> Hi All,
>
> I have the following code:
>
> if (class_RespondsToSelector(myClass,@selector(initWithManager:) == NO)
> myObj = [[myClass alloc] init];
> else
> myObj = [[myClass alloc] initWithManager:sel]];
>
>
> I get a warning on the in
Hi All,
I have the following code:
if (class_RespondsToSelector(myClass,@selector(initWithManager:) == NO)
myObj = [[myClass alloc] init];
else
myObj = [[myClass alloc] initWithManager:sel]];
I get a warning on the initWithManager: statement (Obviously), how to
avoid the warn
On Jan 21, 2013, at 8:17 AM, Jean Suisse wrote:
> I have a non-document based application to which I would like to add printing
> support.
> The main window (the one in the .xib created by default by Xcode) contains a
> split view.
>
> Currently, when printing, I get only the left pane of the s
Answering a part of my question:
The menu item for printing needs to be re-wired to target the app delegate
rather than the first responder.
Now, I need to fix the page orientation and determine the size in points for
the rendering. Any ideas ?
On 21 janv. 2013, at 16:17, Jean Suisse wrote:
On 21 Jan 2013, at 09:41, Muthulingam Ammaiappan
wrote:
> i am modifying the "PXListView" as per my requirement...(please refer the
> "ThumbnailListView.png")
>
> the main problem is PXListView having one column and cells are added in a
> new row. but what i needed is "i need a One Row and cell
Dear All,
I have a non-document based application to which I would like to add printing
support.
The main window (the one in the .xib created by default by Xcode) contains a
split view.
Currently, when printing, I get only the left pane of the split view (at best)
or the control that has the f
i am modifying the "PXListView" as per my requirement...(please refer the
"ThumbnailListView.png")
the main problem is PXListView having one column and cells are added in a
new row. but what i needed is "i need a One Row and cells should be added
in the columns).
can anyone please help me how i c
21 matches
Mail list logo