ios - "Main.storyboard" could not be opened. Multiple elements have the ID "Dsa-PS-aBW" -
i use bitbucket. working fine yesterday after commit , push , pull can not open storyboard , shows me ----"main.storyboard" not opened. multiple elements have id "dsa-ps-abw"
can tell me how can solve problem?? or how can previous code??
the longer response in below question thoroughly explains how resolve duplicate id.
xcode:the identifier ibmemberid xxx-xx-xxx in use <ibuitableview: 0x7fc17df3b720>
storyboard merge conflicts small issue xcode. there's few blogs offering strategies if search it.
with regards getting previous code, if haven't committed yet, can following in xcode:
source control > discard changes
if have committed or if xcode still complains after discarding changes, can check out last commit. can 7-digit hash commit through terminal with:
$ git reflog
then checkout commit branch with:
$ git checkout [7-digit hash]
example:
$ git checkout a2c4e6g
you'll in detached-head state, no prob. read this: git create branch detached head is
Comments
Post a Comment