Display Graph in Titanium iOS - titanium

In my app, i need to display the status of the feedback by a Graph(chart) view.
Is webview is need?
I tried RGraph framework, which is showing errors for me, how to use this framework?
Are they're anyother ways their to achieve this?
Thanks in Advance!

Yes, this library utilizes a canvas, which you'll need a webview to display on. Some possibly helpful reading material on displaying charts:
Display Charts with Titanium

Related

What grid/view does Instagram use for the feed?

I'm in the process of emulating an instagram like application for iOS using Xcode and objective-c. I looked around but I could not figure out how Instagram implemented the following grid feed:
https://debsphuong.files.wordpress.com/2014/10/5-volleyball-hashtag-page.jpg
Any insights would be greatly appreciated it. Thank you
That is a UICollection view. when you tap on the button to turn that grid into a single column grid, the cells are resized to the width of the view and reloaded again.

How to style an RSS feed similar to YouTube?

Hey everyone,
I'm looking to display multiple items in view of an iOS app. Typically I would use UITableView to accomplish this but now I'm looking for something a little fancier. The appearance that I hope to replicate is that of YouTube on iOS systems. A picture of this [youtube] is attached. I am particularly interested in how each video entry is styled. The box around the entry, the background. My guess as to how YouTube does this is through multiple UIViews or stylish UITableViewCell. Any class or framework recommendation would be of great assistance. I have spent hours searching google and stackoverflow to no avail.
Thanks in advance
To mimic the style of the YouTube app, I just subclassed UITableViewController with an initialized style of UITableViewStyleGrouped.

IOS API to use to create app intro in a Flash way

I need to create an intro for IOS app, I want to create transition between images like Macos X screensaver themes (beach, forest...) with music, and text appearing and fading. I don't know exactly which IOS API/framework is the most suitable to use to achieve this. I will appreciate suggestions or links to tutorials.
Many thanks
These links might give you some inspiration on at least how to get started:
iphone fading of images
http://www.youtube.com/watch?v=a4M0BkJwLT0
How about UIImageView and UILabel, with block animation?

ipad image swiper like iTune's horizontal library

I need to make an ipad app which includes an image swiper but not a regular one. I need it to be like itunes library swiper when the device rotation is horizontal. is there any way to do it with objective c or should i do it with html and javascript?
thanks.
I have some experience in using iCarousel by Nick Lockwood. It is very easy to use with several build in effects and also not so hard to modify.
Do you mean coverflow?
You could use this library on CocoaControls called TapKu
There are also a few others here
You can check this HTML+JavaScript implementation http://idangero.us/sliders/swiper/plugins/3dflow.php

How to use .svg in iPad application?

I am creating iPad application for showing shops in shopping mall as arial view, the application landed with normal size image. When do pinching or zoom in, to expand and show row wise shops, more zooming, it need to show shop wise and click on the shop and show information about the shop and what shop is this. How should i use svg format in this application and how to get the coordinates clicked area. Please help me out to done app? or give any other solution like whether the app may be native or web?
You can try using PaintCode (www.paintcodeapp.com) for that. It can import SVG files and generates resolution-independent Objective-C drawing code on-the-fly.
For the SVG, use a UIWebView... see this article
For the touch events you can use a Javascript framework such as jQueryTouch in coordination with the SVG.
As an alternative, check out RaphaelJS... really nice and works perfectly with iOS.