The purpose of the forum is app development. Not promotion, direct or indirect.
Please avoid using the forum for such purpose.
Post
Replies
Boosts
Views
Activity
Did you follow all the steps described her ?
https://support.apple.com/en-gb/guide/iphone/iphd709a3c46/ios
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Tags:
In such a case, I would declare using encryption.
You can probably contact support to double check.
Topic:
App Store Distribution & Marketing
SubTopic:
General
Tags:
Do you call any crypto API, as CryptoKit ?
I understand this as "Does the app provide its own end to end encryption". https is not of my own.
Topic:
App Store Distribution & Marketing
SubTopic:
General
Tags:
Did you try to reinstall the beta ?
That's not a question about app development, hence not for this forum.
You should either:
file a bug report
post on support forum: https://discussions.apple.com/welcome
Topic:
Media Technologies
SubTopic:
Audio
Tags:
It has be implemented, no direct API.
Get solution here: https://www.swiftjectivec.com/readable-content-size-in-swiftui/
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
Can it have to do with the fact that i removed my update from review and submitted another one?
That is something I experienced in the pst. removing a submission did block following submissions.
Only solution was to contact support for help…
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
Without any answer to the question, I updated some devices to 18.2. No bug there. So it is likely "simply" a simulator issue.
PS: a bit deceitful not to get any answer on such a simple question on the forum…
Topic:
UI Frameworks
SubTopic:
General
Tags:
I did notice in the past that cancelling a review may create bad problems.
Your new submission is just 8 days old, during the holidays, which may explain delays.
I would thus advise:
wait a few more days (till January 6
If nothing moves, ask for support, requesting a phone call.
Good luck and happy new year.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
It is a pretty unusual delay.
One point to check. Submitting is a 2 steps action (I may not remember exactly the terms):
there is a button close to where you select language, on the right over screenshots gallery
first, you click button for Add for Review
then the button changes and you have to click again to "Submit to App Review".
Once done, situation unlocked quasi instantly.
Hope that helps.
Could you post a screenshot of the submission page, to see what the button looks like ?
I once had a similar issue. Here was the full explanation:
The “Ready for Review” status indicates that you’ve entered all of the required metadata for your app and suggests that you intend to submit it for review, but haven’t submitted it yet.
You can submit the app by itself or include other items, such as in-app events or custom product pages. You can only send one submission at a time per platform.
To submit your app for review follow the steps provided:
• From My Apps, select your app.
• In the sidebar, click the app version you want to submit.
• On the right, scroll down to the Build section and verify that you set the build for the version to the correct build.
• In the upper-right, click Add for Review. The app status changes to Ready for Review.
• Click Submit to App Review. This is the second step not to miss.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
Have you checked there is no dust, crumb ? You could try to use a vacuum cleaner to bl ow air and try to remove.
What else do you want other developers to do ?
Replace the z key !!!! Or go to a repair shop.
In any case, that's the wrong forum. This is for developing apps, not hardware or software issues. You'd better post there: https://discussions.apple.com/welcome
And don't forget to close this thread by marking the correct answer.
Topic:
Community
SubTopic:
Apple Developers
It would help to know first precisely what the reviewer has reported. What you did is probably a try to solve the reported problems, but without knowing what they were, this information is totally useless.
What type of app is it ?
Do you know any app it looks more or less like (not only UI, but the very purpose of the app) ?
As you say you tried to eliminate any possible confusion, that probably means you are aware of resemblances.
If it is in a very crowded category, there is a risk it mimics existing app.
An advice: when you reply to the reviewer, be very factual, proving as much as you can with objective elements, not fuzzy general statements as "my app is unique". Be more precise to the reviewer than you are in this post.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
When you post code, please use code formatter, so that we get a more readable code.
I've completed to check your code and found many issues (the one you report is a consequence of them):
what does this mean ?
AllObjects.TestObjects
AllObjects (it should be written allObjects as it is an instance, not a class or structure definition) does not contain TestObjects property
So replace with
allObjects[index].latitude = Double(-999.0)
2 index is declared as Int32. Why so ? If it is an index in the array, it should be Int. Or do you want to pass a seq_id ? If so, you would have to change the logic of the func.
3 latitude is a constant. You cannot change it once assigned. Note that a latitude of -999 is meaningless.
With all those errors corrected, it works, as you can test yourself.
If that's OK, don't forget to close the thread by marking the answer as correct.
struct ContentView: View {
@State private var allObjects:[TestObjects] = [TestObjects(seq_id: 1, latitude: 45, longitude: 2)]
func TestObjUpdateLoc(index:Int) { // CHANGED to Int
if index >= 0 && index < allObjects.count { // Important to avoid crashes}
allObjects[index].latitude = Double(-999.0)
}
//error ..Cannot assign value of type 'Double' to type 'Binding<Subject>' **
}
var body: some View {
Text("Hello \(allObjects[0].latitude)")
Button(action: {
TestObjUpdateLoc(index: 0)
}) {
Text("Test")
}
}
}
struct TestObjects: Codable, Hashable {
let seq_id:Int32
var latitude:Double // Changed to var
var longitude:Double // Changed to var
// Many more...
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Welcome to the forum.
It seems you are misunderstanding what the forum is. It can help to solve properly formatted questions, give advices. But it is not a free debugging service bureau.
You should read this excellent thread: https://developer.apple.com/forums/thread/706527
To get help:
express precisely what is the problem (not just say help to fix)
what do you get ?
what did you expect ?
what are the error messages ?
which line in code ? (not only a comment hidden somewhere in code)
Please also format code with code formatter
and indicate the configuration, such as Xcode version.
Topic:
Code Signing
SubTopic:
General
Confirm what darkpaw said.
Whenever you have multiple buttons in a list row, you need to manually set the button style to .borderless or .plain . This is because buttons “adapt” to their context. According to the documentation:
So when your button is in a List, its tap target extends to fill the row and you get a highlight animation. SwiftUI isn’t smart enough to stop this side effect when you have more than 2 buttons, so you need to set buttonStyle manually.
.buttonStyle(.borderless)
Get details here
https://stackoverflow.com/questions/70399810/buttons-in-swiftui-list-foreach-view-trigger-even-when-not-tapped
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
The purpose of the forum is app development. Not promotion, direct or indirect.
Please avoid using the forum for such purpose.
- Replies
- Boosts
- Views
- Activity
Did you follow all the steps described her ?
https://support.apple.com/en-gb/guide/iphone/iphd709a3c46/ios
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Tags:
- Replies
- Boosts
- Views
- Activity
In such a case, I would declare using encryption.
You can probably contact support to double check.
Topic:
App Store Distribution & Marketing
SubTopic:
General
Tags:
- Replies
- Boosts
- Views
- Activity
Do you call any crypto API, as CryptoKit ?
I understand this as "Does the app provide its own end to end encryption". https is not of my own.
Topic:
App Store Distribution & Marketing
SubTopic:
General
Tags:
- Replies
- Boosts
- Views
- Activity
Did you try to reinstall the beta ?
That's not a question about app development, hence not for this forum.
You should either:
file a bug report
post on support forum: https://discussions.apple.com/welcome
Topic:
Media Technologies
SubTopic:
Audio
Tags:
- Replies
- Boosts
- Views
- Activity
It has be implemented, no direct API.
Get solution here: https://www.swiftjectivec.com/readable-content-size-in-swiftui/
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
- Replies
- Boosts
- Views
- Activity
Can it have to do with the fact that i removed my update from review and submitted another one?
That is something I experienced in the pst. removing a submission did block following submissions.
Only solution was to contact support for help…
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
- Replies
- Boosts
- Views
- Activity
Without any answer to the question, I updated some devices to 18.2. No bug there. So it is likely "simply" a simulator issue.
PS: a bit deceitful not to get any answer on such a simple question on the forum…
Topic:
UI Frameworks
SubTopic:
General
Tags:
- Replies
- Boosts
- Views
- Activity
I did notice in the past that cancelling a review may create bad problems.
Your new submission is just 8 days old, during the holidays, which may explain delays.
I would thus advise:
wait a few more days (till January 6
If nothing moves, ask for support, requesting a phone call.
Good luck and happy new year.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
- Replies
- Boosts
- Views
- Activity
It is a pretty unusual delay.
One point to check. Submitting is a 2 steps action (I may not remember exactly the terms):
there is a button close to where you select language, on the right over screenshots gallery
first, you click button for Add for Review
then the button changes and you have to click again to "Submit to App Review".
Once done, situation unlocked quasi instantly.
Hope that helps.
Could you post a screenshot of the submission page, to see what the button looks like ?
I once had a similar issue. Here was the full explanation:
The “Ready for Review” status indicates that you’ve entered all of the required metadata for your app and suggests that you intend to submit it for review, but haven’t submitted it yet.
You can submit the app by itself or include other items, such as in-app events or custom product pages. You can only send one submission at a time per platform.
To submit your app for review follow the steps provided:
• From My Apps, select your app.
• In the sidebar, click the app version you want to submit.
• On the right, scroll down to the Build section and verify that you set the build for the version to the correct build.
• In the upper-right, click Add for Review. The app status changes to Ready for Review.
• Click Submit to App Review. This is the second step not to miss.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
- Replies
- Boosts
- Views
- Activity
Have you checked there is no dust, crumb ? You could try to use a vacuum cleaner to bl ow air and try to remove.
What else do you want other developers to do ?
Replace the z key !!!! Or go to a repair shop.
In any case, that's the wrong forum. This is for developing apps, not hardware or software issues. You'd better post there: https://discussions.apple.com/welcome
And don't forget to close this thread by marking the correct answer.
Topic:
Community
SubTopic:
Apple Developers
- Replies
- Boosts
- Views
- Activity
It would help to know first precisely what the reviewer has reported. What you did is probably a try to solve the reported problems, but without knowing what they were, this information is totally useless.
What type of app is it ?
Do you know any app it looks more or less like (not only UI, but the very purpose of the app) ?
As you say you tried to eliminate any possible confusion, that probably means you are aware of resemblances.
If it is in a very crowded category, there is a risk it mimics existing app.
An advice: when you reply to the reviewer, be very factual, proving as much as you can with objective elements, not fuzzy general statements as "my app is unique". Be more precise to the reviewer than you are in this post.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
- Replies
- Boosts
- Views
- Activity
When you post code, please use code formatter, so that we get a more readable code.
I've completed to check your code and found many issues (the one you report is a consequence of them):
what does this mean ?
AllObjects.TestObjects
AllObjects (it should be written allObjects as it is an instance, not a class or structure definition) does not contain TestObjects property
So replace with
allObjects[index].latitude = Double(-999.0)
2 index is declared as Int32. Why so ? If it is an index in the array, it should be Int. Or do you want to pass a seq_id ? If so, you would have to change the logic of the func.
3 latitude is a constant. You cannot change it once assigned. Note that a latitude of -999 is meaningless.
With all those errors corrected, it works, as you can test yourself.
If that's OK, don't forget to close the thread by marking the answer as correct.
struct ContentView: View {
@State private var allObjects:[TestObjects] = [TestObjects(seq_id: 1, latitude: 45, longitude: 2)]
func TestObjUpdateLoc(index:Int) { // CHANGED to Int
if index >= 0 && index < allObjects.count { // Important to avoid crashes}
allObjects[index].latitude = Double(-999.0)
}
//error ..Cannot assign value of type 'Double' to type 'Binding<Subject>' **
}
var body: some View {
Text("Hello \(allObjects[0].latitude)")
Button(action: {
TestObjUpdateLoc(index: 0)
}) {
Text("Test")
}
}
}
struct TestObjects: Codable, Hashable {
let seq_id:Int32
var latitude:Double // Changed to var
var longitude:Double // Changed to var
// Many more...
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
- Replies
- Boosts
- Views
- Activity
Welcome to the forum.
It seems you are misunderstanding what the forum is. It can help to solve properly formatted questions, give advices. But it is not a free debugging service bureau.
You should read this excellent thread: https://developer.apple.com/forums/thread/706527
To get help:
express precisely what is the problem (not just say help to fix)
what do you get ?
what did you expect ?
what are the error messages ?
which line in code ? (not only a comment hidden somewhere in code)
Please also format code with code formatter
and indicate the configuration, such as Xcode version.
Topic:
Code Signing
SubTopic:
General
- Replies
- Boosts
- Views
- Activity
Confirm what darkpaw said.
Whenever you have multiple buttons in a list row, you need to manually set the button style to .borderless or .plain . This is because buttons “adapt” to their context. According to the documentation:
So when your button is in a List, its tap target extends to fill the row and you get a highlight animation. SwiftUI isn’t smart enough to stop this side effect when you have more than 2 buttons, so you need to set buttonStyle manually.
.buttonStyle(.borderless)
Get details here
https://stackoverflow.com/questions/70399810/buttons-in-swiftui-list-foreach-view-trigger-even-when-not-tapped
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
- Replies
- Boosts
- Views
- Activity