Questions tagged [liveview]

Xcode's liveview provides a way to directly render an Obj-C or Swift code into the Interface Builder.

The term liveview refers to at least 3 very different technologies:

  • Xcode liveview which is a way to directly render an Obj-C or Swift code into the Interface Builder
  • TIBCO Streaming LiveView is a product that allows for continuous ad-hoc querying and visualization of streaming event data (related and former brandings include TIBCO Live Datamart and TIBCO Spotfire Data Streams)
  • Sony Ericsson Liveview which is a watch-like interface for a smart phone
29 questions
0
votes
1 answer

How to set the width of playground liveview?

As shown in below, I just code to see a square ImageView, in LiveView, it will only show partially. I cannot scroll the view left or right, but can only need to drag the view left (and shrink my coding editor view) in order to see the full cyan…
Elye
  • 53,639
  • 54
  • 212
  • 474
0
votes
1 answer

Why EdsDownloadEvfImage() always return EDS_ERR_OBJECT_NOTREADY

I am having a problem trying to call EdsDownloadEvfImage() from the Canon EOS SDK in order to start the live view feature. It always returns EDS_ERR_OBJECT_NOTREADY which signals that the image data set is not ready in the camera or that the image…
nicky
  • 1
0
votes
2 answers

My website looks perfect on local host, but after uploading it online it looks completely different?

My website looks perfect on Dreamweaver live view, Google chrome but after uploading it online it looks completely different and I have no idea why? I checked all the links but if it works on my local host then all the links should be right? The…
0
votes
0 answers

Xcode Playground - Live view dimensions (Swift)

I am setting dimension of live view in Xcode using view = UIView(frame: CGRect(x: 0, y: 0, width: 900, height: 675)) And I am getting this in the live view, Screenshot - 900 X 675 Where each square is 100 X 100, to compare the dimensions. So,…
Amol Kumar
  • 53
  • 10
0
votes
1 answer

Appcelerator Windows Phone (run, build, liveview)

I've an Alloy app compatible with iOS and android, now I need to make it compatible with Windows Phone, but I've some questions about Windows Phone SDK and Appcelerator for building Windows Phones apps. The problem is: I've only 2 options to run the…
rjcpereira
  • 943
  • 4
  • 17
0
votes
1 answer

Appcelerator Titanium: Ti.include causes error "Object false has no method 'replace'" in Liveview

I found that when launching an Alloy project in Appcelerator Titanium with Liveview enabled i got the error "Object false has no method 'replace'" caused by this line in the controller: Ti.include("/common/Globals.js"); I don't see any error if i…
revy
  • 3,945
  • 7
  • 40
  • 85
0
votes
1 answer

Titanium Liveview with bugs

Is there anyway to know if Liveview is running (like Ti.App.isLiveViewRunning)? There is some bugs with liveview that we can try to skip when using it.
0
votes
1 answer

LiveView File Server unavailable error when test development ipa Titanium

My development platform iOS. My development SDK 5.1.0. I run into a strange error of [LiveView] Server unavailable while testing my app via development ipa on device. Before this i always made development ipa through Titanium Studio but due to some…
0
votes
1 answer

live view problems using Canon EDSDK,

My program uses canon EDSDK 2.15, and my camera model is EOS100D. The program starts live view then takes photos when user click a button. It takes photos well most of time, but sometimes live view doesn't work. There is not any error message that…
0
votes
1 answer

Which port does the RX100M3 use Liveview?

I'm developing on a SONY camera RX100M3. I want to know on which port does the camera use to return pictures during Liveview? is it on the same port to spend requests (port : 8080/sony/camera)? I'm using 2 WiFi adaptors, one is connected to my box…
0
votes
1 answer

JavaScript and LiveView (TIBCO Live Datamart)

I have a StreamBase app that queries data and put it into a .lvconf table. Is there a way to get the data from this .lvconf table and have it available in my JavaScript for me to do things with the data?
Dan K.
  • 59
  • 5
0
votes
1 answer

Live View does not rotate self in Interface Builder

I have been applying Live Views on a project I have that builds most of it's UI drawn with beziers and thus far it has been nothing but magic to finally see the application come alive in Interface Builder after working so long it seeing nothing but…
Lucas van Dongen
  • 9,328
  • 7
  • 39
  • 60
0
votes
1 answer

Cannot Liveview viewDidLoad on XCode 6

I started a project under XCode 5 for iOS7, then left it for a few weeks. Now, I have upgraded to XCode 6 (and iOS8) and I would like to use the liveview function to see my viewDidLoad function. So I added : #import #import…
Kalzem
  • 7,320
  • 6
  • 54
  • 79
-1
votes
2 answers

Changeset not updating on dropdown data update

Suppose I have the data: data = [[key: 1, value: "1"], [key: 2, value: "2"] ,[key: 3, value: "3"]] child_data = %{1: [key: 1, value: "exists"]} And the html: <%= select f, :corporation_id, data %> <%= select f, :company_id,…
Daniel
  • 2,320
  • 1
  • 14
  • 27
1
2