Upgrading Existing XCode iPhone Project to 3.2.3 - iphone

I upgraded xcode to 3.2.3 and loaded an existing project I had created with a prior version of xcode. It seems to compile fine as I have set up the correct deployment target and base sdk. When I look under Groups & Files, the Framework group, the Framework files are red and are pointing to the old framework files which don't exist anymore.
My question is should I be removing these Framework files and readding them to the project to point to the new ios4 versions of the framework?

Steps For Upgrade Project in updated Xcode
1--> You Have To set Base Sdk From Project-->info-->build
2--> Confirm From Project under Target -->info-->build
And Compile your Project

Related

How to upgrade .Net framework 4.6.2 to 4.7

My solution is developed in .net framework 4.6.2 then how to upgrade in .net framework 4.7, please suggest me some references.
Thank You
I was facing the same issue because I was trying to install a nuget package which requires the 4.6.1 version at least (Mine was 4.5.2), so I right clicked to the project and selected the properties option and change the Target Framework as shown in the image and that was enough! Keep in mind that you have to install previously the Net. Framework you are trying to upgrade.
As per this document from Microsoft:
https://learn.microsoft.com/en-us/dotnet/framework/migration-guide/
If you created your app using an earlier version of the .NET Framework, you can generally upgrade it to the .NET Framework 4.5 and its point releases (4.5.1 and 4.5.2), the .NET Framework 4.6 and its point releases (4.6.1 and 4.6.2), or the .NET Framework 4.7 and its point releases (4.7.1 and 4.7.2) easily. Open your project in Visual Studio. If your project was created in an earlier version of Visual Studio, the Project Compatibility dialog box automatically opens.
You should review the above document to better understand how to migrate your .NET version as required.
For me, the migration guide was not helpful. I needed to:
Open my solution
Right click on my project and choose "Properties"
Change the "Target Framework" to the desired choice of ".NET
Framework 4.7.2"
1.Open Solution
2.Right click on my project
3.Choose "Properties" and Change the "Target Framework" to the desired choice of ". NET Framework 4.7. 2"
It will work

How to convert Phonegap application into iphone Application?

I'm in problem that I need to implement my phonegap demo project into full version project. But the project will be in iphone and ipad only. I'm using xcode for doing the project but I can not control on dataflow of demo project from xcode.
Have you created the folder reference to the www folder in Xcode as described in the PhoneGap Getting Started with PhoneGap iOS using Xcode 4?
Most people i know using PhoneGap use Xcode only for compiling the project and edit the contents of the www folder with the editor of their choice, maybe this is an option for you.

Running the XCode 3.1 application in XCode 4.1?

I am new developer on iPhone. My problem is that I have installed the XCode 4.1 after changed the settings in the edit project settings it shows XCode 3.1 is missing so if any one know about it give me solution to solve the problem.
you should set the base SDK version in project settings and Target settings as well.
you should check if you have specified the base SDK at both places.
Best of luck.
click on your project under project navigator. then go to build settings
change the base SDK to your 4.x. do it in both project and target.
See "To Edit a Build Setting…":
http://developer.apple.com/library/ios/documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/Building/Building.html#//apple_ref/doc/uid/TP40010215-CH9-SW5

Xcode 4 and GData compile problem

After upgrading to the GM version of Xcode 4 I can't compile my projects that make use of GData (e.g., YouTube API provided by Google). In particular, it complains about GDataFeedYouTubeVideo because it does not recognize it. This is the exact same project that compiled just fine in Xcode 3.x.
In Xcode 3.x, you use to be able to drag a folder from one project to another project. Looks like this feature is removed from Xcode 4. Does anybody know how to do this in Xcode 4?
If GDataFeedYouTubeVideo is a file that should not be compiled then you can manually remove it from the 'Compile Sources' list in your Target settings.
I solved this issue with my gdata api. follow link for what I did
linking gdata to an xcode 4 project

iPhone 4.0 Beta compile for 3.1.3

I downloaded the iPhone 4.0 Beta. But for my projects I need to compile for 3.1.3 to be able to still submit my projects to the App Store. If I run an old project that isn't a problem I can see all the versions, but when I start a new project I can only pick the 4.0 beta, how can I fix this?
Open your project. In XCode open the project settings (Project -> Edit Project Settings). Choose the build tab, and pick an appropriate Base SDK from the options under the architecture group.
You should not submit apps with beta versions of the SDK. Rather install beta SDKs alongside one for production builds.