NKImageView
Overview
Image view class is used to display images on top of a web view.
init(x, y, width, height, imageName)
Initializes new NKImageView control with given size, position and image (can be URL to image in the internet)
show()
shows control (not creating)
hide()
hides control (not destroying)
setImage(imageName)
sets new image to be displayed, can be either name of the bundled image or URL to the image in the internet.
From v 1.7 this API is deprecated, use setImageObject instead
setImageObject(image)
sets new image to be displayed, where image is an instance of NKImage class
setOnClickCallback(callback)
Sets the callback to be called when user taps on image view. Callback is a string name of javascript function to be called (i.e. "myOnclickHandler()")


