Post

Replies

Boosts

Views

Activity

Reply to Mac crashes when extracting Xcode 13.x xip file
Ok, I was able to extract Xcode 13.2b xip finally. Not sure what caused, but here is what I did: Deleted all files/folders under DerivedData/ Downloaded and installed "Command Line Tools for Xcode 13.2 beta" first Restarted Mac Started to expand Xcode 13.2b.xip with no other apps running That's it. I suspect there was low memory issue there. I have 16G but I was working on my project with Xcode 13 while expanding xip files so it may have chewed up free memory then. Or latest "Command Line Tools" is required, which is very unlikely.
Nov ’21
Reply to SwiftUI List Separator within NavigationView Problem
Got help on StackOverflow Link Here. Just adding .listStyle(PlainListStyle()) to List solved the problem.         NavigationView {             List {                 Text("Chocolate")                 Text("Vanilla")                 Text("Strawberry")             }             .navigationBarTitle(Text("Today‘s Flavors"))             .navigationBarItems(leading:                 HStack {                     Button("Hours") {                         print("Hours tapped!")                     }                 }, trailing:                 HStack {                     Button("Favorites") {                         print("Favorites tapped!")                     }                     Button("Specials") {                         print("Specials tapped!")                     }                 }             )             .listStyle(PlainListStyle()) // <- Add this         }
Mar ’22
Reply to need introductory offer to intentionally lapsed users?
Update: I tested it with sandbox user but it seems app store won't introductory offer to those users. Here is what I did: Create new sand box user with 3 min expiration Subscribe to IAP product which doesn't have any offer at this point Renew several period, 15 min or so, unsubscribe from product Create introductory offer with first free month Wait about 10 min At this point the user has both is_trial_period and is_in_intro_offer_period are false Subscribe then device shows regular price in system confirmation popup, no introductory offer So I wonder it is either 1)Apple has some logic to prevent quick subscribe/unsubscribe manner or 2)this test is not enough time to reproduce lapsed period. Could anyone enlighten me please?
Oct ’23