Im working on an iOS project which has multiple targets.
We have an global asset named Images.assets
within a folder GlobalResources and all the targets in that projects are selected. (ie., This particular image asset is been included to all the targets).
Also i have an local Images.assets
on the local target of different folder (ie., for example let my target name be iKarthickDairy
)
now my target has two Images.assets
. I have an image asset added to both the Images.assets
with the name home_icon
but the images are different. Still i could get to see only the image which is in Images.assets
of GlobalResource instead of image on the Images.assets
of local target.
How can I get to see the image on local target instead of the one in Global Resource, without removing the local target on the Images.assets
of GlobalResource?
Note : This project has both the swift and objective-c files.