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
713
Nov ’23
Why is there a "plus" icon at the top right corner of my view?
I'm trying to implement the drag and drop feature to my LazyHGridview. When I try to drop the view on another view, a "plus" icon within a green circle is displayed at the top right corner of the view. https ://i.ibb.co/J5cdhN7/Screen-Shot-2020-09-05-at-22-35-34.png   var d: GridData   @Binding var list: [GridData]   @State private var dragOver = false       var body: some View {     VStack {       Text(String(d.id))         .font(.headline)         .foregroundColor(.white)     }     .frame(width: 160, height: 240)     .background(colorPalette[d.id])     .onDrag {       let item = NSItemProvider(object: String(d.id) as NSString)       item.suggestedName = String(d.id)       return item     }     .onDrop(of: [UTType.text], isTargeted: $dragOver) { providers in               return true     }     .border(Color(UIColor.label), width: dragOver ? 8 : 0)   } }
0
0
564
Sep ’20
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.5k
Jul ’20