Oliver Atkinson

Results 38 comments of Oliver Atkinson

I am seeing the same issue: ```lldb (lldb) visualize titleView error: error: use of undeclared identifier 'CGFloat' error: use of undeclared identifier 'CGRect' error: missing '[' at start of message...

@andrewcrawfordstv can you provide logs for the simulator (`~/Library/Logs/CoreSimulator/`) and crash logs from the diagnostic reports (`~/Library/Logs/DiagnosticReports`)?

if you have code coverage enabled, the xctestrun gets placed in the derived data (despite you asking it to). e.g. ``` xcodebuild \ -derivedDataPath /tmp/derivedData \ -scheme 'ExampleScheme' \ -workspace...

@dimazen What if the type returned by the server isn't as expected - I assume outdated clients would want to handle the error gracefully. Unfortunately I have worked with organisations...

Maybe it's better to add "Goal"'s to the 'XP tracker' plugin - which can show actions, experience and time left.

You can probably use https://github.com/specta/expecta/pull/90 and the `equal` or `contains` matchers dependent on your requirements. Is this what you are looking for?

@kwridan That would be a much better solution than a copy frameworks phase, I would really like to go for a solution exposing that target type. How about: ```swift targets:...

Thanks for the suggestions. > A copy phase is still needed in this approach, it's just hidden within a script phase That's true, we should offer both methods. As I...

> Not sure I follow. Wouldn't the same be possible today by adding a custom post build script phase to the Project-Manifest target? I was referencing this issue: https://github.com/tuist/tuist/issues/183

Oh, it's possible with a pre or post action on an existing target. I was suggesting a new scheme for it, but actually what you are suggesting on the manifest...