[Tip] Price, 다이아몬드 Diamond

http://semigold.co.kr/ab-910-321&article_num=321&tpa_index192=30&PB_1419581562=19

  1. 앞으로 다이아몬드 가치는 점점 내려갈 것이다.
  2. 역시 금이 최고다.
  3. 다이아몬드 합성 기술이 꽤 발전했다고 해도 완성도가 시장에 공개되는 것은 오히려 다이아몬드 합성 비즈니스에 좋지 않은 영항을 준다.

결론 : 다이아를 살려면 합성 다이아몬드 브랜드를 사는게 좋을 듯.

ps. 지구에 산다면 예물을 역시 금(Gold)

 

[ios] Assertion failure with segues

http://stackoverflow.com/questions/35727353/assertion-failure-with-segues

 

현상 : Destination View Controller 에 performSegue할 때마다 오류가 발생함.

해결방법 :

  1. Destination View Controller를 대체할 새로운 Empty Id View Controller를 작성한다.
  2. Destination View Controller 디자인 로직을 옮겨온다.
  3. Destination View Controller를 삭제한다.
  4. 삭제된 Destination View Controller와 동일하게 Segue 환경을 구성한다.
  5. 테스트 : 잘됨.

 

  • symptom : try to perform Segue to “DestinationViewControllerSegue” follow error message was shown “Assertion failure with segues”

 

  • solution :
    • Make new View Controller to replace “Destination View Controller”
    • No Storyboard Id, No Class
    • Migrate UI Code From Old View Controller(“Destination VC”) to new Empty View Controller
    • remove “Destination View Controller” and segue
    • connection source view controller with “new Destination View Controller”
    • fill segue’s id with old segue’s id
    • test
    • work well