Posts

Post not yet marked as solved
2 Replies
Did you ever get this resolved? Worst case pay the wholesale tax rate of 1/2 of 1 percent as opposed to 4.8%.
Post not yet marked as solved
4 Replies
I was accepted in December, and I received an email from Apple stating their commission would be 15% starting January 1. However, when I look at Apple's app "Connect" on my iPad, it appears to be more like 20%. On Connect, when I go to Trends, divide the Proceeds by the Sales, I always get 80%, implying Apple is getting 20%. This is consistent when looking back 1 day, 7 days, 2 weeks or 5 weeks. Anyone else seeing this?
Post not yet marked as solved
3 Replies
Replied In App Store
iTunes Link Maker appears to no longer exist. The link from KMT does not go to Link Maker.
Post not yet marked as solved
7 Replies
I beliveve I found another bug in the formatter. It works fine for distance, but I'd expect the same for other measurements as well, such as area. Below is my code snippet showing the issue. When entering a value of 100 meters, the formatter correctly displays the distance in feet. However, the formatter displays the area as meters squared. I would expect feet squared.// Area double value = 100; // meters NSMeasurement* measurement = [[NSMeasurement alloc] initWithDoubleValue:value unit:[NSUnitArea squareMeters]]; NSMeasurementFormatter* measurementFormatter = [NSMeasurementFormatter new]; measurementFormatter.unitOptions = NSMeasurementFormatterUnitOptionsNaturalScale; NSLog(@"Area is:%@", [measurementFormatter stringFromMeasurement:measurement] ); // Distance measurement = [[NSMeasurement alloc] initWithDoubleValue:value unit:[NSUnitLength meters]]; NSLog(@"Distance is:%@", [measurementFormatter stringFromMeasurement:measurement] ); Area is:100 m² Distance is:328.084 ft
Post not yet marked as solved
7 Replies
Submitted as bug FB7519993.
Post not yet marked as solved
7 Replies
Good to get confirmation, thanks. Sure appears to be a bug.
Post not yet marked as solved
4 Replies
I have had the same thing happen to some of my apps. I know you can report it as spam when viewing it at the app store, but that's not possible when it's in other countries. It'd be helpful if it could be repoted as spam from my dev account.