I'm going to the U.S. to buy a vision pro, does anyone have any information about where they sell it? Will it be sold in Hawaii by any chance? For now, I'm thinking about New York.
Post
Replies
Boosts
Views
Activity
Currently in South Korea, due to my personal experiences with what seems like warranty but isn't, and the operation of a ruthless Genius Bar, I feel compelled to purchase the officially released Vision Pro. I'd like to discuss with other developers here about their thoughts on the release schedule. The product launched in the USA in February, but I'm curious about the months following for the secondary and tertiary launch countries. Naturally, we'll know the launch is imminent when local staff are summoned to the headquarters for training. However, the urgency for localized services, development, and personal purchase is growing on my mind.
Localizable.strings:1:1 validation failed: Couldn't parse property list because the input data was in an invalid format
Why doesn't Apple support live wallpapers on the regular desktop background in macOS Sonoma, like they do with the live lock screen?
"Last year, all the apps I had for sale could advertise in the Today Tap across all countries where they were available. However, I am now selling adult content and products with in-app subscriptions, and I am trying to advertise them on Today Tap, but it is only possible in South Korea. Even when I inquire, they refuse to answer, claiming it's confidential. So, even if I modify the category, advertising is not possible. Do I have to not have any age restrictions or in-app purchases to advertise on Today Tap? They won't tell me what the review criteria are. They should tell me so I can comply with them."
I clearly see that Today tab advertising is only available for a specific country, and I don't understand why they aren't answering why it doesn't appear for other countries. The app is on sale in democratic countries, excluding communist and autocratic nations.
Hello,
Thank you for reaching out to Apple Search Ads.
Upon reviewing your app ‘’, we have confirmed that it is currently only possible to advertise in the Today tab domestically.
Eligibility of your app for the Today tab is continually reviewed based on current Apple policies and restrictions. We apologize, but we cannot provide detailed information about the review process.
We are sorry for any inconvenience this may have caused.
If you have any other inquiries, please let us know. We will do our best to assist you.
Thank you,
Apple Search Ads Team
For rapid mastery of Apple Search Ads Advanced, learn more about Apple Search Ads certification: https://searchads.apple.com/kr/help/get-started/0070-learn-about-certification
On 3 Aug 2023 at 6:36 pm, .com> wrote:
Campaign Name:
Description: The app has passed a customized page review and if you select Today tab advertising, it's impossible to select abroad. I don't know why.
I am currently implementing in-app purchases. I have implemented simple in-app purchases using product.storekit within Xcode, and now I am developing to sell products by implementing auto-renewable subscriptions. Do I necessarily need to create my own personal server to use receipt information? I have never created a server before. Also, if I only want to implement simple in-app purchases, do I still need a personal server?
I am currently programming coredata, icloud, and in-app subscriptions. Currently, I have created an app that stores and synchronizes notes with icloud. In addition, many notes have already been stored in icloud before. However, subscriptions in the app If not done, only coredata is used to save memos. In the future, if a user subscribes and activates the icloud function, all of the coredata contents written in the basic will disappear, and only memos previously stored in icloud will be synchronized with coredata. It's possible. To sum up, is it theoretically impossible to update coredata and icloud contents by combining the previous icloud memo contents and coredata memo contents when the user starts the icloud in-app subscription after saving the memos only in coredata when the user has not subscribed?
(Should I upload and merge the contents stored in the coredata stored in the device to icloud when connecting to icloud when subscribing, and then synchronize the icloud contents to the coredata of the device again?)
I currently have an m1pro Macbook and m2pro high-end Macmini. I saw on wwdc that Macbook and vision pro screen sharing is possible. But I wonder if I can see the mac mini screen as it is on vision pro. Is this very smooth and can I work or use my macmini at home using Vision Pro while I am out at a cafe or going out? Of course there is a delay, but like the xbox x or ps5, the delay will be available looking forward.
What is the difference between swiftdata and coredata? I am coding by integrating coreda and icloud. As introduced at wwdc, I heard that it can be used more easily in xcode. However, for me who has to sell it tomorrow, the stability of swiftdata after the official release of ios17 in the future is low, and scalability and modification are difficult. If it's difficult, it's a lot of trouble. And the most important thing, is there any difference from coredata by using swiftdata in the experience of my valuable customers who use my program? I'm well aware that everyone is learning and discussing. Thank you for sharing your experience.
Is swiftdata not available in vision pro?
Can I run an SNS server with iCloud?
I want to log in through my Apple account and run a public session with icloud without running an Amazon server or a personal server.
I made a custom keyboard.
However, I'm not sure how to actively create buttons according to the input type like the iPhone's default keyboard.
This is the information I found.
typedef enum {
case 'default'
case asciiCapble
case numberAndPunctuation
case URL
case numberPad
case phonePad
case namePhonePad
case eamilAddress
case decimalPad
case twitter
case webSearch
case asciiCapbleNumberPad
}UIKeyboardType;
static var alphabey: UIKeyboardType
Specifies a keybovard optimized for alphabetic entry
Should we study C++ related to augmented reality and deal with Unity and Unreal Engine?
Added imageview to cell.
We have already indexed the label and implemented openurl.
But, I don't know how to index the image the way I wrote it.
Currently, no error code is entered, but the picture is not visible in the simulator.
import UIKit
private let reuseIdentifier = "Cell"
class CollectionViewController: UICollectionViewController {
var modelData = ["A","B","B","D","E"]
let urls = ["h","h","h","h","h",]
let imagedata = [UIImage(named: "image1"), UIImage(named: "image2"), UIImage(named: "image3"), UIImage(named: "image4"), UIImage(named: "image5")]
@IBAction func URLbutton(_ sender: UIButton) {
}
override func viewDidLoad() {
super.viewDidLoad()
}
// MARK: UICollectionViewDataSource
override func numberOfSections(in collectionView: UICollectionView) -> Int {
return 1
}
override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return modelData.count
}
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath)
// Configure the cell
if let label = cell.viewWithTag(100) as? UILabel {
label.text = modelData[indexPath.row]
}
if let imageview = cell.viewWithTag(200) as? UIImageView {
imageview.image = imagedata[indexPath.row]
}
return cell
}
override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
??
}