Search results for

Visual Studio Maui IOS

105,689 results found

Post

Replies

Boosts

Views

Activity

Application is not recognized by Game Center after certificate renewal
I recently renewed my iOS Certificate and now one of my apps that has been on the app store and using game center will no longer let me sign in. When Game Center is trying to authenticateLocalPlayer I get GKErrorDomain Code=15 The requested operation could not be completed because this applicaion is not recognized by Game Center. Also when I go to iTunes Connect I see on my app page in red Leaderboard is not a member of a leaderboard set attached to version 2.0. I don't know what I am missing to get Game Center working again for my device. Any help would be appreciated, thank you!
2
0
1.6k
Jun ’15
Reply to iOS 9 Beta battery life
Agreed 100%. I have run every beta of every version of iOS since the beginning. This is without question in the top 3 worst in terms of hosing the phone. Im not here to whine about it though... Im here to see if anyone has come up with clever solutions that I can reproduce and submit bug reports.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Power Logs
Ive been requested by Apple Engineering to supply power logs for iOS 9, ive enabled logged as per Instructions here: https://developer.apple.com/bug-reporting/ios/battery-life/ however there are no power logs collected in: ~/Library/Logs/CrashReporter/MobileDevice/[Your_Device_Name]/ after doing a sync via iTunes.Has anyone else managed to get any logs and if so what am I doing wrong?Thanks
1
0
1.8k
Jun ’15
Restoring from iCloud backup : warning
Hi all,today, I backed up my iPad (Wifi+Cellular for AT&T, aka iPad 3) through iCloud.Then I restored iOS 9 on it, as per release notes procedure. It took sometimes, but appeard to go well. After rebooting in iOS 9, it never allowed me to restore from iCloud backup, wether from the iPad itself or from iTunes. In fact, it never offered me to restore at all.iTunes told me my iPad had never been backed up to iCloud.Going through system prefrences on a Mac, or iCloud prefs on an iOS device also showed a size of 0 for this iPad (similar to what is stated in release notes). On the device itself, though, last backup time was correct.So... How could I restore ?Issue was : my iPad was still connected to iTunes... So I disconnected it, erased it one more time, and on reboot, I can now see the correct backup and restore from iCloud (currently underway). OK, I could have known that, but I restored so many times being still connected to iTunes that I could not imagine it would cause an issue
0
0
259
Jun ’15
Swift and ObjC interoperability
Hi!In the ios-charts repo, I've had to jump through crooked hoops to make everything available in ObjC.Some function interfaces are not exported to ObjC, and you can see an example here:https://github.com/danielgindi/ios-charts/blob/master/Charts/Classes/Components/ChartLegend.swiftIn the functions `extraColorsObjc`, `colorsObjc` etc.But the weirdest thing is where declaring a variable in the function header as mutable, it prevents the function from being exposed in ObjC for not reason at all!See `setMinimumScaleX`( where I've had to store that variable in a local variable in order to change it unintuitively) in https://github.com/danielgindi/ios-charts/blob/5eefb8fac453d26b65c47f22ab36d484d7de5854/Charts/Classes/Utils/ChartViewPortHandler.swiftNow is there something else that could be done that I'm missing? Maybe a special specifier to make those expose naturally instead of making those hacks?Thanks!Daniel
3
0
712
Jun ’15
Reply to Does anyone have sample code for complications?
Hi,I found it complicated to get the complications to show up in the Simulator—the code was relatively simple, but placeholders didn’t seem to show up due to caching issues.The video ‘Creating Complications with ClockKit’ is definitely the best place to start—the code below is based on the code shown in the video.Create a new project------------------------------------------I found it easier to create a new project with the complication support added in (which also generates the stubs for the data source protocol functions), and then add that to my existing project. + File > New > Project > watchOS > Application (‘iOS App with WatchKit App’) + Add in ‘Include Complication’Targets------------------------------------------Check the following settings for the WatchKit Extension target: + Target > WatchKit Extension + Complications Configuration: + Data Source Class = %(PRODUCT_MODULE_NAME).ComplicationController + Supported Families: check required families (only check the ones you’re han
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Questions about NSCalendar
I'm getting a bit futher.let dayHourMinuteSecond = NSDateComponentsFormatter() dayHourMinuteSecond.allowedUnits = [.Day, .Hour, .Minute, .Second]Now conforms to the new way Swift 2.0 wants things formatted.I'm trying to figure out the calculated calendar time difference between two dates. Pretty simple. I think the function is the following: (using the autofill template),let userCalendar = NSCalendar.currentCalendar() let difference = userCalendar.components( <#T##unitFlags: NSCalendarUnit##NSCalendarUnit#>, fromDate: <#T##NSDate#>, toDate: <#T##NSDate#>, options: <#T##NSCalendarOptions#>)So my code with my variables would read (with the components used from the formatter above (which the compiler is happy with)let difference = userCalendar.components( dayHourMinuteSecond, fromDate: goHomeYoureDrunkTime, toDate: badPoetryDay, options: NSCalendarOptions)But I can't find any value that satisfies the Options for this. In my other code, WrapComponents was the only value that worked, even t
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Is developing extensions for Safari free?
Here is the answer from Apple. No hint that they will change their mind.Hello Per,Thank you for contacting Apple Developer Support, my name is Andrej and I am happy to assist.I understand that you are confused why you need to pay now for the Developer Program. I also understand that you would like to get answers regarding your concern. I am more than happy to help you with that.Please be informed that since the 8th of June 2015 the Developer Program has been updated. We have now one Apple Developer Program which combined the iOS, Mac and Safari Developer Program. Below I attached you a very useful link regarding the major update.https:/ let us know should you have any other question. If you prefer you can also call us at 00353 1 2480047 (Mon-Fri, 08:00-17:00 GMT), please refer then to your case number 822629949.Have a great day!With Kind Regards,AndrejApple Inc.
Topic: Safari & Web SubTopic: General Tags:
Jun ’15
How does 'appearanceWhenContainedInInstancesOfClasses' work?
Hey guys,as 'appearanceWhenContainedIn' is deprecated in iOS 9 and should be replaced with 'appearanceWhenContainedInInstancesOfClasses' I want to tweak my code to that effect. But how to do that? I didn't find something in the official documentation. ATM, my code looks like this:[[UIScrollView appearanceWhenContainedIn:[UITableView class], nil] setBackgroundColor:[UIColor whiteColor]];How do I rewrite this snippet for iOS 9 using 'appearanceWhenContainedInInstancesOfClasses'? Thanks in advance! 🙂Alex
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
7.7k
Jun ’15