Post

Replies

Boosts

Views

Activity

Reply to ITMS-91109 for logo as PNG file of about dialog
After upload got a mail from AppStoreConnect 'ITMS-91109: Invalid package contents - The package contains one or more files with the com.apple.quarantine extended file attribute'. Indeed in the past xcode complained about such files, like images saved from Photoshop that have extended attributes. Easily removed with 'xattr -c'. But, if this is an issue to send us emails about AFTER upload, then please have xcode check this BEFORE upload.. I had 3000+ such images.
5d
Reply to Can someone explain this message
I had this, caused by this: NrofWindows = [[NSWindow windowNumbersWithOptions:NSWindowNumberListAllApplications|NSWindowNumberListAllSpaces] count]; Doc says: "If you pass 0 instead, then the list the method returns contains window numbers for visible windows on the active space belonging to the calling application" As that is what I actually need, changed the value to 0: NrofWindows = [[NSWindow windowNumbersWithOptions:0] count]; And the log msg vanished. Thanks Eljay Adobe for the breakpoint command. rick
Sep ’23