The image of imageWell is not shown.

Hello, I'm working on a small project to draw Lyapunov-Diagrams. For this matter I need to show 3 images. To show that the code is not totally wrong, I attached a NSLog, witch shows text I do not understand. I hope you can help me.

Mit freundlichen Grüßen Uwe

Replies

I attached a NSLog, witch shows text I do not understand.

When you pass an object to NSLog, it asks the object for a description of itself (using the description or debugDescription properties) and then logs that. So the exact output you get depends on what type of object you pass in. And it’s hard to say what that’ll be because you’ve not shared any info about the types of object you’re using or the output you’re seeing from NSLog.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

  •  id description = [_orderMax description]; // _orderMax = property NSImage    NSLog(@"%@ \n", description);

    2022-12-12 15:46:27.740485+0100 GreenMath.0[2992:389625] <NSImage 0x60c00007a300 Name=color010 Size={32, 32} Reps=(     "NSBitmapImageRep 0x60c0000a36c0 Size={32, 32} ColorSpace=(not yet loaded) BPS=8 BPP=(not yet loaded) Pixels=32x32 Alpha=NO Planar=NO Format=(not yet loaded) CurrentBacking=nil (faulting) CGImageSource=0x60c000030180" )>

    You can see, its t he same I send you . Uwe

Add a Comment