when Apple is presenting stuff they use a presentation with keynote, I wonder what theme they are using ?
thanks for helping me out.
As you rightly say, this is the problem: for (int i = self.imageViews.count - 1; i >= 0; i--) { The problem is that self.imageViews.count is not an int. It is an NSUInteger, which is a very different animal. Simply rewrite: for (NSUInteger i = self.imageViews.count - 1; i >=...
To report bugs: bugreporter.apple.com, it is the only way. Even in the Apple forums you will be told you have to use the bug reporter. Do report the bug, that is the only way to get the bug into the system....
apple-push-notifications,apple,watchkit,apple-watch
I don't believe they have a special name, it's just notifications. If you are talking about dragging from the bottom to the top, you'll see a list of Glances. However, these have nothing to do with the notifications directly (the developer might have these display the latest information, which might...
That's right, if you want to install the latest version of Xcode you will need OSX 10.10 or later (see "Compatibility" section here). If you use an older version you will not be able to support newer versions of iOS/OSX....
As Palpatim said, you can look at an online registry, such as this one. Otherwise, there is no way to get this scheme programatically in Javascript. You can find it by hand if you open an .ipa file, in Payload/*appName.app/Info.plist. You'll see a list of urls like this: This picture...
Number formatting of an OpenType font requires having control over which features are active during text shaping, something which typesetting tools will offer (InDesign, XeLaTeX, etc), but which normal productivity tools still (after a decade of Adobe, Apple, and Microsoft all agreeing on using OpenType!) don't offer. Notes included. So,...
Actually it's a bug in Apple system https://twitter.com/kaptin/status/608727199965958144 you can juste create a new AppleID...
The behaviour you're looking for is called paging, but if you want a space between cells then you will need to use a custom layout (UICollectionViewLayout subclass) and implement - targetContentOffsetForProposedContentOffset:withScrollingVelocity:. This tells the collection view where to come to a halt after the user stops interacting....
ios,app-store,apple,testflight,beta-testing
So I solved this issue, not once but twice, apparently it's a bug. what you have to do is turn off all the beta testings and then turn on the one you want to test, and then it works :)...
ios,uikit,apple,uipagecontrol,watchkit
As written by an Apple Engineer in the Dev Forums, it's not possible to customize the color of the page control at this time. Source: https://devforums.apple.com/message/1100695#1100695...
ios,iphone,apple,hybrid-mobile-app,objective
I know HockeyApp support enterprise distribution (http://hockeyapp.net/features/), however it's not free. Beta by Crashlytics say they support this too (http://try.crashlytics.com/beta/), but I haven't had any experience with it....
If you want to go back to the previous view controller navigationController?.popViewControllerAnimated(true) If you want to go back to the root view controller navigationController?.popToRootViewControllerAnimated(true) ...
First of all let me clear, I know nothing about Python but it seems very interesting. I followed your link and it works for me, thank you for that. All I did just downloaded the following modules: beautifulsoup4-4.1.0 futures-2.1.4 requests-2.6.0 and placed the downloader.py script along with modules(futures-2.1.4 and requests...
Of course you should, if the client wants the app to be published under their company name
You can change the iOS deployment target in your project build settings Or set the deployment target of each target (general settings). You should be able to lower down to 7.X with a Swift-written application. Make sure you don't any API specific to iOS 8.X or that you handle those...
in-app-purchase,apple,itunesconnect
I just was on the phone with apple developer support. They said that this is a known issue with itunes connect and they are hoping to resolve it by the middle of today. (we are having the exact same issue with an application that is already in store with recurring...
ios,swift,delegates,apple,uiimagepickercontroller
You forgot about UINavigationControllerDelegate in your ViewController class defenition. The image picker’s delegate object. Declaration unowned(unsafe) var delegate: protocol<UIImagePickerControllerDelegate, UINavigationControllerDelegate>? ...
osx,opencv,camera,apple,webcam
In order to open a camera you can use VideoCapture. The C++ Definition is below: VideoCapture::VideoCapture(int device) By changing the number of device you can select the different cameras registered by your operating system. generally the default (built in) camera is 0 and any additional cameras will be numbered after....
The answer is No. You can't access the applications that submitted. Your submitted applications will disappear from the app store within a short period time after expiring your Apple developer account. The glad news is, if you renew your membership later, you can see your apps in the App Store...
There is no defined notification when an application is deleted. If you must talk to a server, suspend inactive accounts after a predefined time limit. If lets say there is no response or none of the api's are called from the app for a specific duration, lets assume a month,...
ios,fonts,apple,vertical-alignment,custom-font
The package is called OS X Font Tools instead.
Solution: don't use the "?mt=8" parameter in the iOS-Appstore-Link and the redirect will work (and open the Appstore-App on your device)
ios,angularjs,apple,itunesconnect
It's been down for about 12 hours. I heard some people wiped their browser cache and that cleared the error (I tried it but it didn't work), I doubt there's a client side fix for this, as it's most likely going to be the javascript that apple use. The best...
No , there have no restriction if it's running iOS 8 and above - - (void)openSettings { if ( SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0") ) { BOOL canOpenSettings = (&UIApplicationOpenSettingsURLString != NULL); if (canOpenSettings) { NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:url]; } } } ...
It is not possible at the moment (2015) and it seems to be no possible in the future.
Just called Apple and they confirmed that the issue is on their side and also that they should have it back online by end of today(GMT time)
In your example you are calling method test() takes as parameter function of type TestClass -> Void. However, in implementation of test() method you never call passed function, thus println() is never executed. You could try public func test(testFunction:((TestClass) -> Void)!){ testType = "TEST" testFunction(self) } ...
TL;DR: log out on Facebook.com in Safari remove all cookies related to Facebook in Safari It seems like this "bug" only happens for people who have a developer-account on Facebook, and only if they use Safari. Read the full bug-report on: https://developers.facebook.com/bugs/1420585361576700 I thought this would be helpful for everyone,...
objective-c,app-store,apple,version
You can submit 1.0. Build version in xcode != Version of you app. You specify it in itunesconnect. Deleting app. You need to submit it for review once it is reviewed than you can delete it. Below is apple's documentation for deleting app. For redundant binary just submit a new...
Ad-Hoc profile signed apps can only be installed on device which UDID are registered in the profile. You could use an Enterprise account to sign the app as an inHouse app, which will allow you to install on any device. But the Enterprise account only allows you to distribute to...
I once released an app that talked to a service that required you to be a student at my University. I hardcoded an account in the app for Apple that used my own student account to talk to the service (so I didn't have to give them my own credentials)....
Case solved. On Unity 4.6.3, Sha1 is generating wrong result. On Unity 4.6.2 it works fine on both device and editor. UPD: fixed in 4.6.3p1....
apple,licensing,itunesconnect,wwdc
Additional to Member Center you need to go to "Agreements, Tax, and Banking" in iTunesconnect and on top you will see a row with your address and some info. Next to it there is a button "Amendments". There is no word of "Schedule 2" or "Schedule 3" whatsoever. You have...
MKMapView Class Reference : http://goo.gl/djHXPn Look at the camera property : A camera object defines a point above the map’s surface from which to view the map. Applying a camera to a map has the effect of giving the map a 3D-like appearance. You can use a camera to rotate...
I have already witnessed this situation in my project. Say, you have testflight app ver 1.0 and testers are testing it and then you release another ver 1.1. Your existing testers who are testing 1.0 will not be disrupted. Testflight application will show that update is available for ver 1.1...
ios,iphone,xcode,apple,virtualization
I think the given iPhone simulator of Xcode is the only one you can use for it..or maybe the best one. The only chance for something better would be to submit for the apple developer program and use a real device for testing.
ios,xcode,apple,xcode6.3,xcode6.3.1
Yes, it is still possible, but have to do a little work! Just select the project from"Archive", then open package content. Then in the .xcarchive file, there is an Applications directory. Now, open the .xcarchive in finder, and select show package contents. Finally go to Products then Applications then App...
passwords,applescript,apple,username,inputbox
Natively, AppleScript doesn't offer this capability as of OSX 10.10. To see what GUI operations are supported, check the User Interaction suite of the dictionary of the Standard Additions (StandardAdditions.def, accessible from Script Editor.app via File > Open Dictionary... > StandardAdditions.osax). The closest approximation is a single input-field dialog -...
xcode,swift,error-handling,linker,apple
I found the solution! Under my [project]Tests -> general, i needed to select the new Host Application
The button isn't displayed, because of its position. e.g, write button.position = CGPoint(x: size.width / 2, y: size.height / 2) and the button appears at the center of your SKScene....
ios,objective-c,iphone,xcode,apple
0) Clear all constraints for sanity. . . 1/4 SQUARE 1) Resize your view to kind-of fit the intended size. 2) Select the square view and add margin constraints. 3) multiselect the root view and the view 4) Add equality constraint of width and height. 5) Select the equal height...
There are a lot of NSData + AES implementations and a lot of those are severely flawed. Additionally many do not handle key extension for strings and random ivs. If you want security go with RNCryptor, it is being actively implemented and provided good security. Now the next question: How...
Use ABAddressBookRequestAccessWithCompletion to request access. This will prompt the user to allow access, and will call your completion block in either case with the result.
swift,design-patterns,ios8,singleton,apple
I think, eventually, you won't be making a singleton of an UIViewController. What you probably want is to create a class, like Person. Still if you wan't to do it like you did static let sharedViewController = ViewController() isn't the same object as self. import UIKit class ViewController: UIViewController {...
iphone,xcode,swift,apple,watchkit
You can't submit a WatchKit Extension yet. This page says https://developer.apple.com/watchkit/ Please Note: Apps built with Xcode 6.2 and iOS 8.2 SDK may be submitted to the App Store. However, WatchKit extensions are not accepted at this time. Also, the iTunes Connect documentation says that you will need to have...
Dont give me credits for the answer, see the source from where I got the info at the bottom. From I what have read, basically happens at machine code, there is a Null value pointer validation on a OS X base library that renders text, which by the the way...
Download full 2.6 GB xcode completly and remove old one and try it . will fix your problm.Also check for OS compatibility.