Post

Replies

Boosts

Views

Activity

Reply to Inline Comparison on Commit seems to be forced in XCode 15 Beta 3
I utterly loathe this new "integrate" system, but loved the old simple system. I've given up committing changes and I'm gonna wait (and hope, and pray) that Apple sees sense and goes back to the old way, and until then just cross my fingers that I don't introduce any bugs without being able to double check my work on checking in. Unbelievably bad from Apple.
Nov ’23
Reply to NSLog no longer sh
I did add something using the Feedback Assistant, but never got any reply. The number on it seems to be: FB13323043 All I'm looking for is a simple way of (in Objective C) outputting a sprintf type string and being able to display floating point numbers to a given number of decimal places. NSLog used to be perfect for me, but it's so badly broken now.
Nov ’23
Reply to NSLog no longer sh
If anyone is having the same problem, I've figured out a way of getting around Apple's new buggy NSLog: #define LOG(fmt, ...) { NSString* strDebug; strDebug = [NSString stringWithFormat:(fmt), ##VA_ARGS]; NSLog(@"%@", strDebug); }
Dec ’23