I have reported this, however as with most things, the more visiblity the bug gets the quicker it will be handled / looked at. Please also report this issue. I have verified its happening in both Swift and Obj C, and honestly it could be happening in other textfield delegates, but textFeildShouldBeginEditing is the one i noticed it in.
Post
Replies
Boosts
Views
Activity
still occuring on archive in 11.5 , has anyone had a chance to see if its fixed in 11.6 beta?
i agree there are aspects i like but the inability (at least from what i can find) to view post by category or Tags as they are now, and recent posts in general, the "Top Posts" are from months ago and in all actuality some probably dont even apply anymore.
every thing is based off [Tags] now so if you want to see those categories (tags) you need to search by them :
here is list of the "categories" aka Tags
https://developer.apple.com/support/forums/
to search type [tagname] in the the search bar then click on the tag. Not a huge fan of this as its not really intuitive, but you get used it. Hopefully they either make clickable tags to search by or other advancements. New forums are a start, but def needs some QOL changes.
i was getting this too, i tried to resubmit and was still getting it, so i nuked all my certs and provisioning profiles and recreated them (mine were going to expire in the next few weeks anyways) and that worked, not really sure why it happened, but glad others did not have to go through the same things as me.
ive gotten this too, it said an error has occurred and after i hit refresh, it was In Review. So i think its fine, just a bug on the web side. I called support and they said everything looked fine. I Do have a contact with them there i will link this forum post and the stackoverflow post so they can dig deeper into it.
Hello Vikram,
I know this is probably not the answer to your question but as a fellow previous user of PushSharp,(worked great!) Apple is eliminating the binary method of sending push notifications in November 2020, I would suggest looking into a new service that uses the JWT token or Certificate based auth to the new APNS api.
this is helpful to me also ! i was wondering which app delegate (if it was at all gets called) see my post, i believe this answers it too! Thank you @frameworks Engineer :D
https://developer.apple.com/forums/thread/651786
this is from apple engineer,
Great,
What family (size) widget are you using?
> I tried all 3 sizes (small, medium, large)
Note that Link will only work in systemMedium and systemLarge, for deep linking from a systemSmall widget, you'll need to use widgetURL: https://developer.apple.com/documentation/swiftui/view/widgeturl(_:)
Does your app already support deep links?
> Yes. I can trigger the deep link from terminal (xcrun simctl ---) Are you using a SwiftUI App, or a UIApplicationDelegate?
> For the main app, we are using UIApplicationDelegate.
When your widget gets tapped your app should be passed the URL, if you support scenes your scene delegate should get a scene(:openURLContexts:) call, otherwise your application delegate should get a application(:open:options:) call.
Here - https://developer.apple.com/forums/thread/652578
i get a simliar build warning for my watch os app,
Building for watchOS Simulator, but linking in object file (/Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator7.0.sdk/usr/lib/libWKExtensionMainLegacy.a(WKExtensionMainLegacy.o)) built for watchOS
sounds like its a xcode / sdk warning, i would create a FB for it, i created one for watchos
oh yeah a error is more serious, but yeah i just get a warning, kinda odd, seems like a xcode / sdk issue for sure.
my FB:
FB8114253
ive submitted a feedback, it might be good to also submit one, maybe we can get a fix in xcode 12.3.1, i installed the iOS 14.2 simulators and they look just fine.
it also seems to be happening when "popping" back to a previous view controller via the "Back" button. the navbar appearance will be removed / empty until the animation completes. super weird.
i think what you might be seeing (which i also have seen) is that for ios 15 for the Plain table view style they add a Section header padding by default, I wish it was a checkbox or something so we dont have to have it (especially by default) since alot of us are using custom section headers, BUT they did add a function to manually set it in your viewDidLoad
if (@available(iOS 15.0, *)) {
[self.tableView setSectionHeaderTopPadding:0.0f];
}
this should remove the padding or that "gap" you are seeing.
FWIW, this issue is described in this thread :
https://developer.apple.com/forums/thread/683590
They seem to be aware of it, but i would submit a Feedback also, the more that report it (with good details, screenshots, sample projects) the quicker it will usually be brought to attention.
Thanks!