Search results for

missing package product

50,375 results found

Post

Replies

Boosts

Views

Activity

Indexing thousands of static entries
I would like to integrate the new Search functionality, but have some questions on if what I'm trying to obtain is possible and if so which approach I should take to implement it.My app has thousands of entries that could be searched and revealed in the app. It's basically a database of the same category of things - none of which is tied to a specific user, these are all static and unique entries that can easily be searched using keywords. It's kind of similar to a database of medial conditions. So I want anyone to be able to search for any of them, even if they don't have the app installed. In trying to figure out how to do this, I have a few questions:Do I use NSUserActivity or the CoreSpotlight API for this? NSUserActivity allows you to specify eligibleForPublicIndexing, but I don't see a description or image property to be able to set - only a title. Also it was mentioned you can't let your activity dealloc, I surely can't hold a reference to thousands of entries. But I don't see any way to make an entry
5
0
996
Jun ’15
Reply to Rejected: Crash on Launch - Works On All My Devices and Simulator
If you symbolicate that crash log it may provide more useful info. The line10 MYAPP 0x0000000100011ab0 0x100008000 + 39600should point to a line in your code to start looking. The fact that the previous stack frame was StoreKit is interesting. Perhaps your IAP product identifiers are coming back invalid or something, and your code doesn't handle it. Again, if you symbolicate that log you can tell what that callback was.
Jun ’15
Troubleshooting push notifications - response code 114
Hi there,I am working on setting up a simple push service for my application. I have looked in this document for any references to a list or a table of code responses that the APN Server returns but no luck. If anyone can reference a list of these code responses, that would be great!For example:when I establish a connection with the APN server with an empty token, I get code 84 which probably means missing token. So there seem to be a responses API mechanism in the back seen, but I can't find any docs for that API !I found a basic list of codes here
2
0
412
Jun ’15
ip_output_list: can't update route after IPsec processing
Hi,Since installing latest 10.10.4 seed, my L2TP over IPsec tunnel won't stay connected for more than 4-6 minutes at a time.Hvae tried the usual : restarting, clearing PRAM and so on.I have another Mac on the same network (running 10.10.3) connecting to same VPN without any issues.The only thing I can see in console while connected is lots and lots of :22/06/15 09:23:05,000 kernel[0]: ip_output_list: can't update route after IPsec processingUntil I get disconnected:22/06/15 09:23:46,332 com.apple.geod[20805]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 Couldn’t communicate with a helper application. (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fddf0503ff0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}22/06/15 09:23:46,904 sandboxd[20806]: ([20805]) com.apple.geod(20805) deny mach-lookup com.apple.CrashReporterSupportHelper22/06/15 09:24:37,
1
0
362
Jun ’15
Reply to Xcode 7 causing problems in Xcode 6?
Visit the last tab of Xcode preferences, there is a pop up button to choose the default command line tools. You don't need to install CLT if you have Xcode installed (since Xcode 5 as I remembered). It is embedded inside Xcode. Normally, a beta Xcode would not set itself as the default CLT if a production version is installed, but in your case, it could be that you've manually installed a separate CLT.
Jun ’15
Reply to Segue only working first time
Well i got the solution by myself.The point was that i have only one Navigation controller and all my segues are modal. So when i go to the initViewController, wich is the rootviewcontroller too, it seems to lost the hierarchy of the views. In the viewWillAppear method of this class i got this:-(void)viewWillAppear:(BOOL)animated{ [self.view.window.rootViewController dismissViewControllerAnimated:YES completion:nil]; }This fixed the issue. Now it finds again all the views.
Jun ’15
OS X Server Continious Intergration Error CodeSign
HiIm trying to set up Continious Integration with Xcode 7.0 ,OS X Server 4.1 and Yosemiti 10.10.4I keep getting ERROR codeSigning error: code signing is required for product type Application in SDK 9.0Ive revoked the last provisioning profile and made a new oneApplication builds succesfully on devices and simulatorBut still getting this error when I do an intergrationfor testsCan any one point me to a solutionWill be massively appreciated- Ray
3
0
780
Jun ’15
Reply to Rejected: Crash on Launch - Works On All My Devices and Simulator
Thanks. I finally figured out how to symbolicate the crash log by using Google since the links provided by the Review Team was from 2012 (https://developer.apple.com/library/ios/#technotes/tn2008/tn2151.html) and was not updated to Xcode 6 (or probably 5), did not mention I had to rename the crash log attached from the Review Team, that I had to connect my device, go to Organizer, view Device Logs, drag & drop, etc. (Filed a radar #21483079).Anyway, yes, the problem occurred with a custom object that handles the Store. I had this exact same error during development when for some reason iTunes Connect did not recognize my one upgrade product and so there were zero objects in the response from the store and trying to do anything with the response array crashed. I had to delete the test Sandbox user I was using and create a new one (for some reason) and eventually the store returned the one product and everything worked.I would *assume* that the Review Team would have to sign in with a test
Jun ’15
Reply to Can't Install Cisco AnyConnect
Hello,this very much depends on the head-end your organization uses. So, yes, there are a number of products on the market.At my job, I happen to work a lot with Cisco products, so I guess I could say a few things about those. But there certainly are quite a few other manufacturers of VPN solutions on the market. But I guess this is getting a little beyond the scope of this thread.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Navigation
Has anyone else noticed issues with navigation on watchOS 2? It really is the only bug I've seen in the beta. Turns are out of sync (several steps behind), and sometimes very different from the phone's companion app. If I miss a turn, the phone reroutes, but the watch doesnt. The taps do seem to be accurate, reguardless of what the direction's are.
2
0
218
Jun ’15
Review Crashes - Invalid Product Identifier
I submitted an app with a single non-consumable IAP upgrade. It crashed all the Review Teams devices (but works wonderfully on my devices).After I symbolicated the crash log (from the Review) the app crashed for them when my singleton Store handler (added as the Store observer in App Delegate didFinishLaunching) called requestStoreProductList (from my main view controller) and the delegate method productsRequest: didReceiveResponse: was called (in the custom object) but the response.products array was empty and when I tried to do anything with the array (e.g. objectAtIndex:0) the app crashes.This happened to me during development as I had put the wrong identifier in iTunes Connect, but that was corrected, but then my test Sandbox user still wouldn't recognize the change and the failed delegate method showed the corrected identifier as invalid. So, I deleted that test user and created a new one, and then everything worked (the product was returned). And it has worked for me ever since and I have NO cr
6
0
2.2k
Jun ’15
Reply to Using Swift to get (scrape) data from a web page
I've done a little more research and playing around and came across an example of using WKWebView. This is very interesting since it gives the rendered page instead of the code. The example fills the View with the webpage and covers up my user interface, so it is not yet a solution for me.I'm at a loss how to extract what I need but I feel I'm getting closer.Here is the code from that example:In the ViewController:import WebKit @IBOutlet var containerView : UIView? = nil var webView: WKWebView?andoverride func loadView(){ super.loadView() self.webView = WKWebView() self.view = self.webView }override func viewDidLoad(){ super.viewDidLoad() var url = NSURL(string:http://www.kinderas.com/) var req = NSURLRequest(URL:url) self.webView!.loadRequest(req) }
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15