Post

Replies

Boosts

Views

Activity

Company name as the seller name without an entity type
I'm about to start a new company and planning to create a corporate developer account. I know AppStore automatically displays the company's legal name as the seller name like ABC LLC, XYZ Corportation, etc. What I wonder is if it is possible to display only the company name by omitting the entity type like "ABC" or "XYZ". Here an example: https://ibb.co/ZHGb1dp I don't if it is something that I should do during account creation or requesting a DUNS number.
0
0
741
Nov ’23
WidgetKit won't request a new timeline at the end
When I run the code snippet below, WidgetKit is supposed to request a new timeline at the end of each minute according to the Apple's documentation. let currentDate = Date() let futureDate = Calendar.current.date(byAdding: .minute, value: 1, to: currentDate)! let timeline = Timeline(entries: [       Entry(date: currentDate, number: Int.random(in: 0...10))], policy: .after(futureDate)) completion(timeline) But it just works once and nothing happens afterward. I am trying it on iOS 14 Beta 2.
6
0
6.6k
Mar ’21