I'm attempting to use iTMSTransporter on the commandline to bulk upload app screenshots.I build myself a .itmsp bundle and pass it on the commandline - all works well - except when I attempt to upload iPad Pro screenshots. The transporter complains with the following error:ERROR ITMS-3000: Line 1 column 7900: value of attribute display_target is invalid; must be equal to Mac, appletvos, iOS-3.5-in, iOS-4-in, iOS-4.7-in, iOS-5.5-in, iOS-Apple-Watch or iOS-iPadQuestion is - does anyone know what the correct display_target is for iPad Pro (assuming the transporter even supports it - which looks doubtful since it doesn't appear when I use the transporter to download the itmsp bundle)Thanks
Search results for
column
2,047 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I've been trying to use SCNView added on a column of NSTableView.Now I have multiple SCNViews and each of them is added on individual rows of NSTableView.Therefore NSTableView has the same number of its rows to the number of SCNViews.When the number of SCNViews and rows of NSTableView are enough large, NSTableView only shows the first few rows and else are hidden befind the window as shown in the picture.Hidden rows can be shown by scrolling a slide bar.See the picture.http://imgur.com/sz1v59jThe problem happens on the SCNViews that do not appear firstly on the screen.When I scroll the slid bar, hidden SCNViews appear on the screen but their rendering are broken.See the picturehttp://imgur.com/rYPIfUpWhat happens on the SCNView when it is not shown on the surface?Is there anything I need to do extra for them?Thank you so much for your help.My codesViewController.swifthttp://climbi.com/b/5671/0tableViewController.swifthttp://climbi.com/b/5672/0listcell.swifthttp://climbi.com/b/5673/0AppDelegatehttp://
I'm attempting a sparse BLAS solution for linear equations based upon the 2015 WWDC Session 712 presentation. I have run solutions with dgetrf and dgetrs, and also dgesv for dense arrays, but my previous posts for sparse solutions didn't work, now I think I've gotten things to work after rewriting the routine ... but it is not at all elegant, e.g. using too many arrays at this point, plus I still need sparse factorization instead of using dgetrf. Really need interface to SuperLU or at least dgstrf.Swift code:// SparseBLAS linear equation solver coded in Swift// Original input for AO is in a linear array (of sequential rows)// AO is rearranged from a row linear array form into a column linear array AI// Lapack dgetrf factorization is performed for the LU decomposition// Solution is found from the sparse solver functions:// sparse_vector_triangular_solve_dense_double solved in Lower and then Upper Timport Accelerate// Original row major order of example arrays AO and rhs vectors BO// dense example 1: a
Hi. I hope someone could help me with my problem.Short info about me: I'm not a programmer of Apps, I'm just a developer. The programmer of my app just pre-released a new version, which I test now in testflight on a iPad Mini 4 with iOS 9.1. This version has a failure in a search pop-up. The pop-up window shows no results, but reacts normally. This means that if I tap on one of the columns, the search result is added to the playlist. This means, that there actually is a result, but I am not able to see it.My programmer can't find a solution and wants some extra monery for programming a completely new search.But that's not what I want 😠I'd be glad if someone could help me on this. The app is called Playbacks123 MP3 Player PlusApple-ID Eine automatisch erstellte ID, die Ihrer App zugeordnet wurde. 1061524662
Many of the questions about the iOS8+ splitViewController deal with instructing the splitview to show the MainViewController as a column istead of an overlay. I've set my preferredDisplayMode to All Visible to get over that hump. However, whenever I display a secondary view controller, either through showDetailViewController or by returning an empty controller from separateSecondaryViewControllerFromPrimaryViewController the controllers always appear underneath the PrimaryViewController, aligned to the left side of the screen. The view is sized correctly, so I see a lot of empty space to the right side of the window.Is there something relatively common that I'm doing wrong here? I'm not finding anything in the sample projects that I'm missing...
I have a query regarding data. I have a data of 500 records and 4 to 5 columns. I want user to enter some thing and then my app will search from the available records if that data exists.As i am new to app development so may be i have some beginer questions to ask so dont mind 🙂1) Should i use SQL Lite to keep the data in the app ? once in a month i want app to contact the server for record's updating purpose2) how to prepopulate the data into the sql lite when the app is installed first time3) should i use sqllite desktop interface to create a db and then import it via xcode to the app project and then from there it will start using it?can u please send me link to study it and then implement it. or if some one can give me hint about how to pre load the data in the sql lite data base?Thanks in advance for your response 🙂
I have a question about creating an external beta test in TestFlight.Can I choose to only send the beta test to certain 'groups' (3rd column) or will the beta test be automatically sent to everyone on the external testing list?
override func viewDidLoad() { super.viewDidLoad() let query = PFQuery(className:reservedCust) query.findObjectsInBackgroundWithBlock { (objects, error) -> Void in if error == nil { if let objects = objects { for object in objects { if let item = object[item] as? String { self.itemList.append((object[item] as? String)!) } } } print(self.itemList) self.tableView.reloadData() }else { } } }so this is my code . this returns all the items in my item column of parse for classreservedCust. I have another class reservedList which has userid i would like to retrieve the item accoring to the userid
When I view processes in Activity Monitor's All Processes, Hierarchical view, it shows which processes launched other processes. For instance, if I have Network open inside System Preferences, then when I expand System Preferences, I see (irrelevant columns omitted):Process NamePIDSystem Preferences22033 com.apple.preference.network.remoteservice22043I.e. Activity Monitor knows that remoteservice was created by System Preferences.However, when I use 'ps' from the command line, both processes' parent PID values are 1 (launchd):$ ps -ww -o 'pid,ppid,command' -p 22033,22043PIDPPIDCOMMAND220331/Applications/System Preferences.app/Contents/MacOS/System Preferences220431/System/Library/PreferencePanes/Network.prefPane/Contents/XPCServices/com.apple.preference.network.remoteservice.xpc/Contents/MacOS/com.apple.preference.network.remoteservicesysctl(kern.proc.pid) is the same.How can I learn that remoteservice (pid 22043) was created by System Preferences (pid 22033)?This is OS X Yosemite 10.10.5, but I beli
My applications store flow is something like this:1. make web call to server to fetch products2. call apple to validate product identifiers3. display valid products for userMy server's database schema for products has columns such as: productIdentifier, name, description, details, image, etc.So, ideally, the only column I want to have to worry about duplication is the productIdentifier, because I have to create the product in my database and then put that same product identifier in itunes connect when creating an in-app purchase.My problem is, creating an in-app purchase in itunes requires me to add a language with a name and description. I want to just use the product data returned from my server for name and description (as well as other things) and not have to worry about having some information on the apple product, and some information in my server. So, this is forcing me to do something dumb like write in the app store: name: level 2, description: an additional level for users to play.
If you hit Run and it takes you to the debugger, your app did compile and it ran. The debugger gets invoked only after you have a successful compile.If you stop in the debugger on a given thread (showing to the side), then as iPad_dev said, note that you probably have a blue arrow square thing on the left hand column in the line that it shows for execution (looks hilighted across the code). The same execution line may also show that you are crashed and in that case will be a different color. For the color blind, the interface is not good but look close and it shoudl say SIGBART or something.Unfortunatley this forum has a broken image system so posting a snapshot of what you see is difficult. The picture you see would tell all... (Apple really needs to fix this). Suggest also checking http://stackoverflow.com
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I have noticed a similar effect. In the iOS column on TestFlight->External Testing, iTunes Connect shows the wrong status for some users (like an test version they have installed some time in the past and later replaced by a more recent test version), but the correct date of the last status change (f.i. the date they installed the latest version). In Activity->All Builds->Version[latest build]->Testers however, iTunes Connect shows me the correct date and the devices that this version was installed on. Did you see that as well? Did you file a bug report?
Topic:
App Store Distribution & Marketing
SubTopic:
TestFlight
Tags:
Hi,we are doing an application that needs to potentialy transfer a lot of files from a server to an iPad before it goes offline. So we are using the NSUrlSession do to background transfer with a periodic background fetch to enqueue the files to downloads when we didn't succeed to enqueue all of them when our application was in foreground (or to download new files). The BeginBackgroundTask helps us get more times, but it's far from being infinite.The issues we encountered with this implementation is the background transfer is not made to transfer too much files at the same time (the nsurlsessiond process ends-up with 100%+ CPU usage which will crash from times to times because of >50% CPU over 180s, and after queueing too much requests, sometime the API calls to queue new background downloads will blocks, even on iOS 9.1, and even after unintalling our application).But when we tested other apps doing file transfer for offline usage, we noticed some other apps can successfully transfert 6000+ files in backgr
I am creating an app for posting items to eBay. I have successfully added an item and the next step is to upload an image or images, which can then be referenced by that item. The API call is to the trading endpoint and is calledUploadSiteHostedPicturesI am using the NSURLSession and creating an NSURLSessionUploadTask.The error I get is:<Error><Code>5</Code><SeverityCode>1</SeverityCode><Severity>SeriousError</Severity><Line>0</Line><Column>0</Column><ErrorClass>RequestError</ErrorClass><ShortMessage><![CDATA[XML Parse error.]]></ShortMessage></Error>This is the first time I have attempted to use a multi-part post:Headers:{ Content-Type = multipart/form-data; boundary=0xKhTmLbOuNdArY; X-EBAY-API-APP-NAME = rSchluet-xxxx; X-EBAY-API-CALL-NAME = UploadSiteHostedPictures; X-EBAY-API-CERT-NAME = 8b9c20xxxxx; X-EBAY-API-COMPATIBILITY-LEVEL = 947; X-EBAY-API-DETAIL-LEVEL = 0; X-EBAY-API-DEV-NAME =
I've encountered that bug where the font picker in Interface Builder is stuck on one font collection (in this case monospace). When I resize the window, I see the Collection collumn while resizing the window; but as soon as I let to, the Family column slides to the left and obscures it. Does anybody know of a workaround? Really want to be able to select other fonts.