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_unretained

Tuesday, 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---


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 ......

M--branch condition evaluates to a garbage value



















































 so we have to put 'popover'  as nil and  Goooo .... 










Monday, 26 November 2012

W--property access result unused - getters should not be used for side effects

Write this method     contentViewController.view;  

as   


[contentViewController view];

W--Assigning to 'id' from incompatible type 'Map Detail *'

Add         <WEPopoverControllerDelegate>    to the delegate method 

W--Declaration of 'struct sockaddr_in' will not be visible outside of this function

Add #import <netinet/in.h> in Reachability.h to get away with this

W-Semantic Issue-Method in protocl not implemented

--WEPopoverController.h    File






AND



In MapDetail.h    File









 U have to remove     WEPopoverControllerDelegate    Delegate Method..........and play........