Post

Replies

Boosts

Views

Activity

Reply to App Store Connect – URGENT! Missing “In-App Purchases and Subscriptions” Section + Cannot Create New Version (Blocking Submission)
I'm dealing with this too. My submission was rejected because I 'didn't attach the subscriptions to my v1.0'. But I never saw that section. (I have 3 other apps live on the App Store with subscriptions for about 1 year, never had this issue). Anyway, after getting this rejection for 'not attaching', I still don't see the section for attaching it. Tried pretty much all that OP said, and had the same results. Finally, just now, I submitted a new build for v1.0, after removing all paywall and subscriptions for my app. Hopefully this free version will get approved and I can later go ahead with a v1.1, where this section might show up. Extremely frustrating.
4h
Reply to Need help Exercise Partial Iteration (Swift playground)
Hey Claude31, Thank you for being active and answering the questions! I saw your response after I wasn't able to figure it out, and it was really helpful. However, after I copy-pasted your code, I saw that if the while loop does NOT find a match, the code will simply print the index value in the end, which isn't helpful. So I re-wrote your code and would like your opinion: var index = 0 var found = false let totalPlayTime = aliceMessages.count   while found == false && index < aliceMessages.count {     found = aliceMessages[index].contains("Alice")     if found == false {       index += 1   } else if found == true {     print ("Found at index number \(index), after about \((index*100)/(totalPlayTime))% of the play is over.")   } } if index >= aliceMessages.count - 1 {   print("No matches") } I'm sure it can be made even better by making this into a re-usable function, but right now I don't feel like over-engineering this. :P What do you think? Best, Aradroid.
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’23
Reply to App Store Connect – URGENT! Missing “In-App Purchases and Subscriptions” Section + Cannot Create New Version (Blocking Submission)
I'm dealing with this too. My submission was rejected because I 'didn't attach the subscriptions to my v1.0'. But I never saw that section. (I have 3 other apps live on the App Store with subscriptions for about 1 year, never had this issue). Anyway, after getting this rejection for 'not attaching', I still don't see the section for attaching it. Tried pretty much all that OP said, and had the same results. Finally, just now, I submitted a new build for v1.0, after removing all paywall and subscriptions for my app. Hopefully this free version will get approved and I can later go ahead with a v1.1, where this section might show up. Extremely frustrating.
Replies
Boosts
Views
Activity
4h
Reply to Need help Exercise Partial Iteration (Swift playground)
Hey Claude31, Thank you for being active and answering the questions! I saw your response after I wasn't able to figure it out, and it was really helpful. However, after I copy-pasted your code, I saw that if the while loop does NOT find a match, the code will simply print the index value in the end, which isn't helpful. So I re-wrote your code and would like your opinion: var index = 0 var found = false let totalPlayTime = aliceMessages.count   while found == false && index < aliceMessages.count {     found = aliceMessages[index].contains("Alice")     if found == false {       index += 1   } else if found == true {     print ("Found at index number \(index), after about \((index*100)/(totalPlayTime))% of the play is over.")   } } if index >= aliceMessages.count - 1 {   print("No matches") } I'm sure it can be made even better by making this into a re-usable function, but right now I don't feel like over-engineering this. :P What do you think? Best, Aradroid.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’23