I am new in AR development and currently working with one video calling based application using AR features so need to add UITextview inside sceneview's node
I have tried with following code:
let scanInfo = UITextView(frame:CGRect(x: location.x, y: location.y, width: 100, height: 80))
scanInfo.textAlignment = .left
scanInfo.textColor = UIColor.white
scanInfo.text = "SCAN A SURFACE"
sceneView.addSubview(scanInfo)
If anyone having some idea about then plz let me know
Hey guys I got the solution of my own question Hope this helps.
Add a plane node and inside that add SCNtext as a child node of plane node