Search results for

show when run

112,669 results found

Post

Replies

Boosts

Views

Activity

Facebook Share w/ Iphone
I have an app that users have the option to share their score via Facebook. But my problem is that unless the user has a Facebook app, it will NOT post the link correctly.Therefore, those without a Facebook app, when they post their link directly through their iPhone browser, it will show up incorrectly. My developers are saying that it is iPhone's default setting & this can not be change.Is this true?
0
0
360
Jun ’15
New project errors
With iOS 9, I'm taking the opertunity to rewrite a small game of ours, and found that there are a few errors that keep popping up no matter what we do. Just thought I would share and see if anyone else has them or if anyone has solutions?Edit: Forgot to remove my unhandled iAd errors (I was going to include a picture which didn't have them in it, but they are not supported on the new forums). Also, I'm using GameKit (GameCenter is turned on), StoreKit (In-App Purchases is turned on), and iAd Frameworks in my app. No custom intergration, I've not even typed a single item of code besides linking UI items. Spaced the errors for readability.Edit 2: There is a comment below with an update (second comment down). Although this started in iOS 9 Beta (before Xcode Beta Form was avaible) it was for Xcode7 Beta 1, it is still relevant for Beta 2. It has also came to my attention that most of these errors have been showing since Xcode 5 or 4 (around 2012 - 2013). They have been known bugs, but never fully fixed.
3
0
3.2k
Jun ’15
Application Transport Security
Running my app in XCode 7 beta I now see this:Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.but I can't find any mention in the Swift book or on the web. Is this documented anywhere? I need to know what to put in the Info.plist while in development
1
0
2.3k
Jun ’15
Reply to NSWindow an NSImageView is in?
I figured it out it's just -window. I looked and looked and looked and never saw that until i posted! Duh!So to show a splash screen when the program starts, I have this: NSWindow *myWindow = [_Trains window]; [myWindow makeKeyWindow]; [myWindow makeMainWindow]; [myWindow performSelector:@selector(close:) withObject:nil afterDelay:4.0];
Topic: UI Frameworks SubTopic: AppKit Tags:
Jun ’15
upgrade to xcode 7 and swift or not?
I'm writing a business app and have it running for the most part. I'm wondering if it's worth migrating to xcode 7 and swift or not? It seems there's a lot of negative press (which there always is), but am I better off waiting for a while? I don't plan on integrating with watch for a while, but I want to deploy later this summer. Just a general question for opinion?
3
0
785
Jun ’15
On device watchOS debugging impossible
It doesn't seem to be possible for me to debug on device wtih my apple watch. I can run my develpment app normally, but Xcode just can't seem to attach to a debugging session.I've read the relase notes and have tried:1) deleting the app/apps from devices and trying again2) ensuring Show App on Watch is on for dev app3) restarting all of: watch, phone, xcode, mac.4) unpairing / pairing againNo dice.When I click Run on the [AppName] WatchKit App scheme, the status window says Running [AppName] WatchKit App on [Phone name]. It stays like that for about 45 seconds. Then it says Finished running [AppName] WatchKit App on [Phone name].It really seems like the Phone->Watch connection is just way too slow. When I launch Xcode, it takes about 2 minutes before it considers my Phone+Watch pair as eligible for this scheme. During this initial 2 minutes, if I look into Window->Devices I don't see my watch listed even though I can clearly see it is paired.I'm going to turn
23
0
18k
Jun ’15
Reply to Not finding Carrier
always showing iPhone carrier name on the left top corner? I have ATT carrier. I tried to reset network settings its works, but after reboot turns back to iPhoneHow to fix it? Cause i dont understand when good signal, when bad... when carrier avialable, when not...
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Companion app has problems with Watch OS 2.0
I updated my iPhone to 9.0 beta, installed the profile on the watch and updated the Apple Watch to Watch OS 2.0But now the companion app has problems with the new Watch OS. I can install third party apps with the companion app. But I cannot check in the general settings the software version or other things. The app gives me an allert that it cannot connect to the watch and I should check if the airplane mode is set to off. All the icons of the Apple apps are also not shown in the companion app. There are only these white placeholder icons for them.I can also not change settings for the app. I checked it with the photos app and the sync album is set. But the app on the watch dont show the photos because I think it cannot read the settings.This is what I did. Maybe there was something wrong with the update.- I installed first the latest version of iTunes on my iMac with OSX Yosemite- Then I installed iOS 9 beta on my iPhone 6 Plus- I dont know if it is normal but the watch now was in a state like when
3
0
959
Jun ’15
Reply to How to lower iOS version
Downgrading iOS devices is not supported. If you need to test on hardware running an older OS version, you have to buy a used device that still has that version installed, and never upgrade it. (You can't choose a specific version to upgrade to either; if you do upgrade, it is always to the latest release version.)Strange but true.
Jun ’15
Touch ID credential surviving device reset on iOS 8.3
My app supports Touch ID to allow the user to log in using a saved credential (password).When the user launches the app, they are immediately prompted to touch the home button to log in.A successful touch retrieves the credential and uses it to log in.We have been seeing sporadic problems under iOS 8.3.Upon launch the system will *not* prompt the user to touch, it will instead directly retrieve the correct credential and log in.I set the credential using the following code (some details shortened for readability):-(void)enrollTouchForUser:(NSString *)username { NSString *password = @passwordFromInterface; NSData *encodedPassword = [NSData encodePassword:password forUsername:username]; NSData *encryptionKeyData; // obtained from outside process - code not needed for this sample NSData *encryptedPassword = [NSData encryptDataWithKey:encryptionKeyData withData:encodedPassword]; // add the key to the keychain CFErrorRef error = NULL; SecAccessControlRef sacObject; // Should the secret be invalidated when passcode
2
0
874
Jun ’15
How do I install apps without a developer program?
Well, one of the main features of Xcode 7 is the ability to install apps you're developing without an Apple Developer Program. Theorically, you just have to add your Apple ID. I added it on Settings, but every time I try to run the app on my iPad it says that I need to be enrolled in the Apple Developer Program. How do I try my app without having to enroll?Thanks!
6
0
4k
Jun ’15