Add armv6 and armv7
Real Application Errors , Warnings , Memory leaks By Anjana
Wednesday, 12 December 2012
Thursday, 6 December 2012
"EXC_BED_ACCESS"
WHEN THIS TYPE OF ERROR IS THERE WE HAVE TO RETAIN ARRAYS LIKE THIS......
[sortedAddress retain];
[sortedTitle retain];
[sortedLat retain];
[sortedLong retain];
[sortedAddress retain];
[sortedTitle retain];
[sortedLat retain];
[sortedLong retain];
Thursday, 29 November 2012
E--xcode the current deployment target does not support automated __weak references
__weak references only work on iOS 5 and above. If you have the deployment target set to anything earlier, then you'll get the error. Basically, if you want to deploy to earlier devices you can't use automated __weak references. The substitute would be __ unsafe_unretainedTuesday, 27 November 2012
W--uncategorized warning multiple build commands
When This type of Warning accure --
Warning: Multiple build commands for output file /Users/samirvohra/Library/Developer/Xcode/DerivedData/Petrolpump_App-dzlcnzblvtsbctgiejqcsysdfmxa/Build/Products/Debug-iphonesimulator/ParkingFinder-FindNearestParkingPlace.app/secand-page-3.png
Sollution is---
Warning: Multiple build commands for output file /Users/samirvohra/Library/Developer/Xcode/DerivedData/Petrolpump_App-dzlcnzblvtsbctgiejqcsysdfmxa/Build/Products/Debug-iphonesimulator/ParkingFinder-FindNearestParkingPlace.app/secand-page-3.png
Sollution is---
In the Project Navigator, select your Xcode Project file. This will show you the project settings as well as the targets in the project. Look in the "Copy Bundle Resources" Build Phase. You should find the offending files in that list twice. Delete the duplicate reference.
Xcode is complaining that you are trying to bundle the same file with your application two times.
Replace This image With Different name ......
Subscribe to:
Comments (Atom)