Hi all. I have add three20 to my project successfully. but I got 2 issues:
1- ld: warning: directory not found for option '-L/Projects/iphone/myProj/three20/Build/Products/Debug-iphoneos
2- file not found when I import "Three20/TTStyleSheet.h" and others
I have added these: "$(BUILT_PRODUCTS_DIR)/../three20" "$(BUILT_PRODUCTS_DIR)/../../three20" "three20/Build/Products/three20" in header search paths as well.
I am using Xcode 4.3 and iOS 5.1.
any suggestion to fix these 2 issuses thanks
Have a check on the project.pbxproj file.
If it is like that: HEADER_SEARCH_PATHS = ( "$(BUILT_PRODUCTS_DIR)/../three20", "$(BUILT_PRODUCTS_DIR)/../../three20", );
It is wrong. It should be like that: HEADER_SEARCH_PATHS = ( "\"$(BUILT_PRODUCTS_DIR)/../three20\"", "\"$(BUILT_PRODUCTS_DIR)/../../three20\"", );
I had this once and it was difficult to debug. So just add '\' That happens with a specific update on XCode.
It looks like you're new here. If you want to get involved, click one of these buttons!