Search results for

Visual Studio Maui IOS

105,655 results found

Post

Replies

Boosts

Views

Activity

Reply to Unable to run updated WatchKit app in Xcode 7's simulator
i installed into Applications. The betas a apropriately named so there is no problem coexisting with release. I have reset the content of both iOS and watchOS simulators and restarted both and that lets me run the watch app once. To debug again the reset of content has to be repeated in my experience so far. Very slow debug cycle.So far no luch doing the same on device.
Jun ’15
app won't run
Had my app running on my watch with Watch OS1 and wanted to try OS2. Installed iOS 9 and Xcode 7.After several failed attempts, I went back to my non-watch app and added a new target for the Watch OS2.Added my storyboard contents, icons, etc.When I run the Watch App, it installs the icon, the app, sets everything up, and then Xcode says Finished running the app.If I tap the icon on the watch, it spins forever.If I try to look at the glance, it has an activity indicator that spins forever.There aren't any error messages, yet the app won't run.Does anyone have any ideas that I can try?
4
0
1k
Jun ’15
Free Provisioning failing
So, I downloaded Xcode 7 and installed it to be able to use free provisioning to test my app on an iPhone running iOS 8.3 before subscribing to the developer program. Connecting my iPhone, I see it in the toolbar and on the device list in Devices window.I also added my Apple ID in the Preferences' Accounts Tab and it shows Free under iOS and Mac next to my name. Nevertheless when hitting the play/build-and-run button Xcode at first starts building the app but before transferring, I guess, it stops and tells me it was Unable to find a team with the given Team ID '<My ID>' to which you belong. Please contact Apple Developer Program Support. https://developer.apple.com/support, any suggestions what to do?I removed and added my account several times, getting the same message all of the times.
2
0
1.2k
Jun ’15
Can't fetch JSON due to NSInvalidArgumentException
Hey guys,since NSURLConnection is deprecated in iOS 9, I'm trying to replace it with the recommended NSURLSession. When the completion handler of my NSURLSessionDataTask is getting called my app terminates due to an uncaught exception 'NSInvalidArgumentException' – the reason: 'data parameter is nil'. Of course a corrupt URL can be the reason for this error, but I've already checked that. Now, let me show you my code:- (void)downloadItemsWithQuery:(NSString *)searchString { NSString *theQuery = [searchString uppercaseString]; NSString *encodedString = [theQuery stringByAddingPercentEncodingWithAllowedCharacters: [NSCharacterSet characterSetWithCharactersInString:@!*'();:@&=+$,/?%#[]]]; NSURL *theURL = [NSURL URLWithString:[NSString stringWithFormat: @http://alexpoets.com/VPlan/service.php?klasse=%@, encodedString]]; NSURLSessionDataTask *dataTask = [[NSURLSession sharedSession] dataTaskWithURL:theURL completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { _downloadedData = [[
13
0
3.9k
Jun ’15
Urgent: All my provisioning profiles suddenly expired and all apps stopped working
I signed in this morning to developer.apple.com to find that I need to sign some contract with the new terms of service. I couldn't even access most of the site before I signed it. So I did.After that I visited my provisioning profiles section https://developer.apple.com/account/ios/profile/profileList.action?type=production to find that all my provisioning profiles have become expired.Also my apps already on the appstore started crashing. They crash upon launching. Currently none of my users are able to use the app unless they redownload the app from the appstore. I don't know why it works if you redownload it, but I am guessing it has something to do with the provisioning profile issue since:1. this issue is not unique to one app2. I didn't even submit a new version. The apps were running perfectly fine until a few days ago.3. I tried renewing one of the provisioning profiles for a test app and rebuilt it, and the test app started working again.Right now I don't know what I am supposed to do. My us
3
0
1.7k
Jun ’15
WKWebsiteDataStore
Hi, I'm playing around with WKWebsiteDataStore, and throwing an exception each time I attempt to ask for the default store using:[WKWebsiteDataStore WKWebsiteDataStore];Stack Trace:2015-06-10 14:26:35.264 iOS9Sample[34994:293382] +[WKWebsiteDataStore WKWebsiteDataStore]: unrecognized selector sent to class 0x2447458 2015-06-10 14:26:35.266 iOS9Sample[34994:293382] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[WKWebsiteDataStore WKWebsiteDataStore]: unrecognized selector sent to class 0x2447458' *** First throw call stack: ( 0 CoreFoundation 0x00aa4c54 __exceptionPreprocess + 180 1 libobjc.A.dylib 0x00564e26 objc_exception_throw + 50 2 CoreFoundation 0x00aadaa3 +[NSObject(NSObject) doesNotRecognizeSelector:] + 275 3 CoreFoundation 0x009eb32d ___forwarding___ + 1037 4 CoreFoundation 0x009eaefe _CF_forwarding_prep_0 + 14 5 iOS9Sample 0x0009aee1 -[ViewController webView:didFinishNavigation:] + 113 6 WebKit 0x021bb1fd _ZN6WebKit15NavigationState16NavigationClient19didFinish
1
0
759
Jun ’15
Reply to Battery Use Worse
One thing I am seeing here is that the time required to update the watchOS app can be very long after the iOS app is installed and running. It can take almost 60 seconds for a very simple watch app. That process also seems to eat up a lot of watch battery.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to This app is not allowed to query for scheme...
Right. You'll have to declare the URL schemes, you want to use in your Info.plist. Use the key LSApplicationQueriesSchemes for that.Note: Apps that were built before iOS 9 will always return NO for canOpenURL as soon as they checked 50 different schemes. Even rebooting the device doesn't reset those!There will also be session 509 about the new Universal Links called Seamless Linking to Your App on Thursday.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to WCSession sendMessage returning errors (simulator)
WCErrorDomain error 7004 is WCErrorCodeSessionNotActivated, so you are probably not doing the WCSession setup in the WatchKit extension like you are in the iOS app. Both side need to individually set up and activate their WCSession.Also, you might want to move the setup of the WCSession in your iOS app to a part of the code that gets called when your app gets launched in the background.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15