Search results for

build disappears

49,325 results found

Post

Replies

Boosts

Views

Activity

Reply to How do i solve the issue that states failed to import bridging header and ParseFacebookUtilV4/PFFacebookUtil.h could not be found? I am trying to incorporate Facebook login using Parse.
1. make sure your bridging header file is under correct path. To check it is, go to build settings > search for briding header, it should be under swift compiler - code generation. 2. If you are using any dependency manager, make sure header search paths are correctly pointed.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Facing issue for uploading application to app store
Hi Team,I am facing problem when uploading new version of app to app store. My previous version of app is 1.3 and i am uploading 2.1 but when i am trying to Archive it,it takes only 2. and showing me an error message.Please find the steps below:1. i am changing build and version in info.plist.2. cleaning the project.3. build the project with app store provision.4. archive it with xcode.5. validate it then it shows error.
0
0
112
Jun ’15
Reply to Download failure
It's true that this is the case for the DP2 update itself. This is why I haven't dared to try that yet. But I'm not convinced about Command Line Tools having 2 packages. After installing the CLTools_Executables.pkg the Command Line Tools update actually disappeared from the App Store Available Updates list. If it wasn't installed completely then wouldn't it still be in the updates list?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Xcode 7, Swift 2.0, odd "trap 6" with odd solution
TL;DRI got trap 6 error when I tried to build my App. I tried to fix it for a whole day. I fixed it by simply cloning the repo to somewhere else and build it. It might be caused by some cached build file somewhere in the project folder, which is not tracked by version control.Why I am certain it is caused by some cached file in that project folderI tried Clean action in Product menu. I also tried deleting Derrived Data folder in Project window. None of these helped.I also tried to checkout my master branch, which I know it should build. But I got the same error which makes no sense.I created some demo project to mimic the minimal setup of my App. All of them can be built without any error.I cloned my repo somewhere else and checked out the exact commit which is giving me trap 6 error. Build, succeeded!I copied the original trap 6 folder to somewhere else, I still got the same error.PS.Another thing is that, I got this error when I was using Xcode 7 beta. I updated
6
0
948
Jun ’15
Reply to Where is Content Blocker Extensions documentation?
Ok, here's the solution: I haven't realized that you need to switch the extension off and on in the Preferences to make Safari reload it after you build & run it. I think that didn't even work in beta 1...So there are two ways you can handle it:1) Run the app or the extension, Cmd+Shift+H to the Preferences app, turn the extension off and on, Cmd+Shift+H back to Safari, reload the page.2) In your main app, import SafariServices and run this at startup: SFContentBlockerManager.reloadContentBlockerWithIdentifier(foo.bar.my.ContentBlocker, completionHandler: nil)(obviously only in debug mode). Then debug by running your main app instead of the extension, and just Cmd+Shift+H directly to Safari and then reload the page.
Topic: Safari & Web SubTopic: General Tags:
Jun ’15
How to link a library based on build configuration?
We have a number of test libraries that would need to be linked with debug builds, but not the release builds.I'd like to avoid the obvious route to create additional targets, because beside the libraries these targets would have exactly the same files.Shouldn't this be possible using some additional „Run Script“ phases?Any hints are appreciated!Best regardsKlaus
0
0
87
Jun ’15
ios9 AddressBookUI display problem and How to build connection with CNContact object and ABRecordRef(or ABRecordID)
Hi, I am a developer of a addressbook(or phonebook) app. I found in ios9 , apple provide the brand new APIs(Contacts and ContactsUI) for reading and writing system address book , which are the replacement of the old AddressBook and AddressBookUI api. I am very happy to use the new api for the convenience, easy for reading and so on.But I found that there are some UI problems When use AddressBookUI in ios9 beta and beta 2 version. The ABNewPersonViewController does not seem good in ios9 (ipod touch 5, iphone 5), when i scroll the ABNewPersionViewController, I found that it(ABNewPersonViewController) can't be scrolled down. So I decide to report this bug.Besides, I have a question about the relationship of Contacts framework and ABAddresBook framework. Are there any connection between a CNContact Object and a ABRecordRef (or ABRecordID)? If it does exist, I want to know how to transfer from a exist(the contact is in the ios system addressbook or contacts) CNContact Object to a ABRecordRef and vice versa.I know
5
0
2.5k
Jun ’15