Post

Replies

Boosts

Views

Activity

Reply to How to add placeholder text to TextEditor in SwiftUI?
Until we get placeholder support from TextEditor API, I'm using something like this: TextEditor(text: self.$note)           .foregroundColor(self.note == placeholderString ? .gray : .primary)           .onTapGesture {             if self.note == placeholderString {               self.note = ""             }           }
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’20
Reply to The review of your app is taking longer than expected
I received the same message, but my app was in review for only 4 minutes. I haven't contacted Apple and submitted a new binary (found a small bug while waiting for the review). Now my app is waiting for review again for 12 hours. I assume they are pretty busy with WWDC these days but seeing how some accounts were terminated following this message worries me even if I didn't do anything wrong AFAIK. Would be a relief to see that someone got their submission approved after getting this message
Jun ’20