The file "PhotoUploader" could not be viewed as you dont have permission to view it - ios7

I downloaded PhotoUploader from github to integrate flicke in xcode, link is below
https://github.com/bobbypage/DPFlickr
Now I am trying to run the PhotoUploader example project in my xocde 6.Project snapshot is attached here. Please help me.

Solved it by myself:
Perform changes to upgrade the project to xcode 6 version.
Delete libz.1.2.3.dylib framework and then add libz.dylib

Related

Xcode 6.3.2 unable to build or run projects

After upgrading to Xcode 6.3.2 I'm unable to build/run, analyse, profile project. Even project clean functionality looks broken. Does any body experienced similar problem and know how to fix it?
The problem appears to go away when you go download and install the new command line tools for 6.3.2.
After struggling with this problem for couple of hours I have finally found solution. In my case Xcode Derived Data location was set to custom folder and it was the origin of the problem. After changing Xcode Derived Data location to default one everything back to normal.

Cordova 2.1.0 not getting included in the project after install

I am creating an IOS app with cordova 2.1.0.
I installed cordova 2.1.0, by following the steps mentioned in http://docs.phonegap.com/en/2.1.0/guide_getting-started_ios_index.md.html#Getting%20Started%20with%20iO
Now i made changes to files like AppDelegate.m, AppDelegate.h, etc. and www folder. When i see the physical folder structure in the project, the CordovaLib.xcodeproj does'nt get included in the project. Why is this happening? Why is it not getting included in the project. Every user will not download cordova and follow the steps.
Any help will be appreciated.
Thanks.
What do you mean by "user will not download". The developer (you) have to downlod it nd create the app. Cordova is packaged within your *.ip file.
If the cordov project is not oincluded, you will be unabvle to build. If you cn build it, it is included.
If you don't want to handle the complete xcode project stuff, use build.phonegap.com

Appcelerator Titanium Module - Verification issue, unlicensed module(s)

I had found a module in the appcelerator marketplace to allow for the rotate gesture called gesture recogniser but unfortunately it's now been removed when i went to purchase but it looks like the developer has also released the module as a 'skeleton' version on github here:
https://github.com/atsusy/Gesture-Recognizer
Now i followed the instructions on the readme file and built the project which created the module for me, when putting this into an app though i get the following error message and red screen:
Verification issue
Unlicensed module(s) detected.
You must be a subscriber to use one or more of the modules included with this project
Is there something i have missed to get this and how to i go about resolving the issue? Sorry i have no clue when it comes to github and modules so apologies if i am trying to use this in my app when i shouldn't but if anyone can help explain how and if i am allowed to get this working?
p.s the original link for the marketplace link that is now not found is: https://marketplace.appcelerator.com/http-status/?1894758329
You need to follow steps as follows:
Open Terminal and run “uuidgen”
Copy the code you see on the terminal
Open tiapp.xml, replace what’s in the “guid” tag with the the code you copied.
In Titanium Studio, do Project –> Clean
Run
Concept is to change GUID of module which is mentioned in manifest.
If you have the source code, just go the the manifest file, change the guid in the manifest to a new one, and build the module again. Probably better to increase the version and include it in your project again. Clean and build and it will work.
I guess the Titanium studio checks if you have licence for the modules you use. In case a module is on the marketplace with the same guid and you have no licence for that, it triggers it as unlicensed module.

Are there any good tutorials for using ShareKit?

Does anyone know of a good tutorial that is easy to understand for ShareKit? I've looked but found nothing. I'm pretty new to Xcode.
The GitHub wiki for ShareKit v2.0 has a great page titled Installing ShareKit that should help you get up and running with the latest incarnation of this project.
The source tree also has an xcodeproj file which contains sample code showing how to integrate ShareKit into your own project.
You can checkout the documentation given in http://getsharekit.com ...after you downloaded and attached to your project open config file and read the comment lines given before each methods in it...it will direct you to correct way...There is no exact tutorial for it...If u got any specific issue then ask a question here..we are ready to answer...

Updating RestKit to master

I updated to master and I'm not able to load new classes like
RKObjectMapping. I went through the install instructions again and reviewed
the example projects but still can't figure it out. Why wouldn't XCode know
about RKObjectMapping when I include ?
I had this problem as well.
From this thread on the RestKit group:
Close the project
Open Window->Organizer
Under Projects tab, delete DerivedData for your project
Quit Xcode and Relaunch
Open the project
Clean and rebuild
Everything should work.