I am trying to write code for XCTest (Unit Testing) in xCode Project, when i try to run unit testing function i got the error like Lexical or Preprocessor Issue Group Can anyone help me on this? For Information i am checking with xCode 11.1 Thanks in Advance.
Search results for
A Summary of the WWDC25 Group Lab
10,094 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I'm trying to create a focus group called Entertainment and I like want to add all of the streaming apps, like Netflix, Disney+, Discovery+, Peacock, Paramount+, Apple TV App, but none is showing when hit the add apps button.
Hi, it's me again. I have now solved my three problems. i can load .rcproject files in Xcode. i can assign gestures to a group of objects created in RealityComposer (the group contains two spirals. One I can use a menu button to affect behaviors of objects I created in RealityComposer. (A spiral fades out at startup and fades back in when the button is clicked). Individually, this all works the way I thought it would. But now I want to bring it all together. So I put everything together in a ViewController. But now I see two groups of objects on my device. One group reacts to the gestures and the other reacts to the button and the notifications. How do I get both the notifications and the gesture control to work together on one group. You can find me project here: https://wetransfer.com/downloads/2e217e5d86d273360fb50a7298e986b520220203152701/26a044d7ffc54197ac6055c4065f6f1c20220203152827/cf5ad8 Thanks for your help. Thomas
After uploading a build to AppStore Connect via Xcode, the default AppStore Connect Users - Group is not added to the Build in TestFlight. I am also unable to add the Group manually. It is always grayed out.
Can someone attempt to duplicate this for me?I had two messages come in this past weekend, from two different people using iMessage. When I replied to only one of the messages, it created a group message between the two people who messaged me, and sent my reply to both parties. Steps involved:1) Receive iMessages from two different people2) Tap one message and reply3) Send pre-built reply such as OK, Sorry, can't talk right now4) Check Messages on iPhoneAfter these steps, I discovered that I had sent a group message instead of just replying to the message that I was intending to reply to. I would appreciate if someone could verify this as a bug. Thanks in advance.
I'm trying to figure out how to proceed with multiple subscription groups with iOS in-app purchase.Suppose I have multiple content providers users can subscribe to, and for each there are different tiers of subscriptions as follows:Provider 1 : Basic, Plus, Premium Provider 2 : Basic, Plus, Premium ... Provider n : Basic, Plus, Premium.My understanding is we do this by creating subscription group and within each subscription groups create Basic, Plus, Premium. Users can upgrade/downgrade plan within the group.My issue is we add/remove content providers all the time, therefore its not scaleable to keep adding new subscription groups every time we have new provider.
The field areaName on WeatherAlertSummary is documented as optional at https://developer.apple.com/documentation/weatherkitrestapi/weatheralertsummary so it might not always be available. A number of factors could lead to the summary not including an area name, but since it is included in the details page it does seem reasonable it can be in the summary as well. We will investigate further and see why areaName may not have been included in the summary.
Topic:
App & System Services
SubTopic:
General
Tags:
In the 10.10.x VPN dialog, there's a setting for Group. This is missing in the current dialog.Not sure if this is why, but I set up a new VPN connection to our company VPN.
I create a map with pins. Some of them are located close to each other and when I zoom out, the points are obscured by others. How to group them so that all of them become visible when the map is zoomed in properly. What the most efficient why to do that? Currently in viewDidLoad, I'm getting point data from firebase and put them on the map. db.collection(map).getDocuments() { (querySnapshot, err) in if let err = err { print(Error getting documents: (err))} else { for document in querySnapshot!.documents { let data = document.data() if let name = data[name] as? String, let lat = data[lat] as? Double, let lon = data[lon] as? Double { let newAnnotation = MKPointAnnotation() newAnnotation.coordinate = CLLocationCoordinate2D(latitude: lat, longitude: lon) newAnnotation.title = name self.mapa.addAnnotation(newAnnotation) } } } }
Hello, I would like to ask for your opinion on whether the following in-app purchase (IAP) specifications would comply with the App Store Review Guidelines. ■ App Overview ・The app allows users to create a “Family Group” by inviting other family members to join. ・The app provides brain-training games. The game itself is displayed via WebView. ・All purchases use in-app purchase (IAP) only. No external payments or links are provided. ■ Purchase Types (2 models) ① Group Unlimited Plan ・If one member of a family group purchases this plan, all members of the same group can play the games without limits for a certain period. ・This is based on the app’s own group-sharing mechanism, not Apple’s “Family Sharing.” We will clearly state this in the UI to avoid confusion. ② Ticket System (Consumable) ・One user in the group purchases game-play tickets. ・Other members of the same group can also consume those tickets to play. ・Tickets are only shared and consume
Hello, I would like to ask for your opinion on whether the following in-app purchase (IAP) specifications would comply with the App Store Review Guidelines. ■ App Overview ・The app allows users to create a “Family Group” by inviting other family members to join. ・The app provides brain-training games. The game itself is displayed via WebView. ・All purchases use in-app purchase (IAP) only. No external payments or links are provided. ■ Purchase Types (2 models) ① Group Unlimited Plan ・If one member of a family group purchases this plan, all members of the same group can play the games without limits for a certain period. ・This is based on the app’s own group-sharing mechanism, not Apple’s “Family Sharing.” We will clearly state this in the UI to avoid confusion. ② Ticket System (Consumable) ・One user in the group purchases game-play tickets. ・Other members of the same group can also consume those tickets to play. ・Tickets are only shared and consume
From 2021.01.01 to 2021.01.31, the Summary Sales Report found 1503 rows with units of -1. The App Store Server notification found 2508 messages with notification_type of REFUND. Why is there a difference between the two data?
Topic:
App Store Distribution & Marketing
SubTopic:
General
Tags:
App Store Server Notifications
Analytics & Reporting
As far as I understand it, Groups in Xcode are simply a way to organize your project's files. However, I have found that classes in groups can't access the classes that aren't in the same group or children of that group. This makes no sense to me. Example: Group A -ClassA Group B -ClassB I want to declare: class ClassA: ClassB but I get the error Cannot find type 'ClassB' in scope However, if I move ClassB into Group A, it works. Is this a bug?
I have a UITableViewController created in storyboard and I have set the tableView to display in grouped mode.I am trying to use TableView's automatic cell height calculation by setting self.tableView.rowHeight = UITableViewAutomaticDimension; self.tableView.estimatedRowHeight = 50;and I am not overriding heightForRowAtIndexPath.The cells I am using are either Basic or subtitlte type (i.e no custom cells) and I have enabled multiline text for titleLabel and subtitleLabelby setting numberOfLines to 0However, the cell always display with height = 50 and it appears that the text labels are extending above and below the contentView to accomodate the multiline text.Things work perfectly well if I simply make the tableView to display in plain mode intead of grouped.So my question is 0 Does UITableViewAutomaticDimension work with grouped UITableView ?
I've built a macOS app (in Xcode 12.5) with Finder extensions, and set all the components to share a common app group, with the name correctly formatted as CD......7C.com.orexresearch.EMPSecure.group . Up till now, it's been working fine for everything I've needed it to do, with app and extension both accessing common files. But now I need to do file downloads for the FileProvider extension, and these are failing. I know part of the problem is to do with the App group -- in the main app, the download works if I initialise the Dropbox component without the app group identifier, but if I switch Dropbox to use the app group identifier, it fails repeatedly in both the main app and the extension: error 21:36:44.487814+1100 EMPFileProvider BackgroundSession <7764EC70-AC7F-46F4-91DC-547FAA23249C> an error occurred on the xpc connection to setup the background session: Error Domain=NSCocoaErrorDomain Code=4097 UserInfo={NSDebugDescription=} error 21:36:44.487893+1100 EMPFileP