Well I too am having issues with Xcode 15 and git. I can see the normal file list with the "M" showing a change. But then the "stage all" and the commit-push doesn't
work. I can sometimes get staging a single file to commit but even there it doesn't provide any feedback that it did the commit. I have to go to the GIT website and hope it worked.
As I have about 6 pods or other repositories that make up my app, this too seems to get an error saying it cannot communicate with GIT (on one of them). Maybe it takes too long.
Prior to Xcode 15 everything was working very nicely.
Post
Replies
Boosts
Views
Activity
Did you ever get a reply to this? Most of my apps of the watch were initiated by the watch, which woke the iPhone and then potentially sent a message out on the network (and received messages as well).
But now I have the issue where an MQTT message needs to be received by the iPhone and then forwarded to the watch. Since the phone is in the background, that won't work.
So I was wondering if the watch could wake up the phone for some period of time - and have it wait for messages (or if MQTT saves the messages). This fits your question of "how long can background process run).
I too believe taking away storyboards is a step back. Storyboards are impressive IMHO. Without them it's like having to place debug statements in my embedded ESP chips; such a lower level. I've been trying to duplicate a watch app in another projects but it's not possible manually, and the app they create is in Swift. I also like Objective-C way more than Swift.
I just updated to 14.0.1 ER and the windows are back to their default colors. Yay.
I actually found others with this issue from previous editions.
I am using cocoa pods which might be the issue. I'll look at that direction next.
I don't know about the Rosetta in the information for Xcode (which is checked).
I deleted all my derived data and sadly the windows are all still black. I'll look for a newer 14.0.1 next.
What's strange, is the navigator in the storyboard also shows things black for View, TextView, StackView etc. That's what leads me to believe there is some preference that I cannot figure out.
This screenshot shows the different colored TextView browser.
/Users/scott/Desktop/BlackWindows2.png
Using the term "windows" for the top tab like items, and "tabs" are those under each window - I can see a rational as grb2007 mentions for grouping related items.
But this was already possible by having an actual movable "window", with multiple tabs (which are now called "windows"). We have all used that function for years.
My biggest issue is that swiping between tabs seems to be broken. If I click on file1 in the navigator, it shows up. If I click another file2, it shows up. But swiping to the right doesn't show file1, but somewhere else. What's worse, is my file1 shows up for a second, then it's yanked away and that somewhere else shows up. I assume it's using the tab history, but I can't figure it out.
Anyone know how to either remove the new "tab" feature, or at least fix the swiping between files in the file history?
thanks.
Ok, I figured it out. I wasn't getting the VNDectectBarcodesRequest involved. This fixed it.
VNRequest *vnRequest = [[VNDetectBarcodesRequest new] initWithCompletionHandler:^(VNRequest * _Nonnull request, NSError * _Nullable error) {
NSLog(@"vnRequest called %@, %@, error=%@",request, request.results, error);
}];
Has anyone solved this yet? I have Xcode 12.4 and created a trivial project (Objective-C) that links in a simple other project (for my base types). The other project has it's BaseTypes.h include the .h of the main code. This base project, KSBaseTypes, compiles nicely by itself.
// In this header, you should import all the public headers of your framework using statements like #import KSBaseTypes/PublicHeader.h
But when incorporated into the workspace of the test project, both the original BaseTypes.h won't compile, and any user of those types also aren't found.
#include KSBaseTypes/KSFrameworkRoot.h --error: 'KSBaseTypes/KSFrameworkRoot.h' file not found
The test main gets this error:
#import KSBaseTypes/KSBaseTypes.h --error: Could not build module 'KSBaseTypes'
As this is a trivial example, what is going wrong with frameworks? I'm not going to mess with search paths unless some Apple doc says so (I tried).
Also, the error on building when combined is:
/Users/scott/Documents/Xcode/ExampleFromWeb/KSBaseTypes/KSBaseTypes/KSBaseTypes.h:10:10: Did not find header 'KSFrameworkRoot.h' in framework 'KSBaseTypes' (loaded from '/Users/scott/Library/Developer/Xcode/DerivedData/ScottyTestTypes-bfwsyutnpcgxeuhbksuzfzelkbli/Build/Products/Debug-iphonesimulator')
So maybe the other .h files aren't pushed to this DerivedData folder? The other .h files are not in the public or private headers copy build phase (so I'm searching that issue).
SOLVED:
I had to manually add the .h files from the framework into the build phase (eg. KSFrameworkRoot.h) and it works nicely.
thanks.
I've been trying to invoke the PHPickerViewController that is focused on a specific user album (such as one created by a program). This seems related to the presentLimitedLibraryPicker.
Is there any way this is possible?
I'm using Version 12.0.1 (12A7300)
thanks