I'm wondering if there's any SDK/control to use bing maps with monotouch? or probably any solutions on how to use iOS bing SDK with monotouch
Chris Hardy has created MonoTouch bindings for Bing maps. Check it out here.
Related
Is there anyway to use a UIWebView with an application targeted for tvos?
This Apple Doc, UIWebView Class Reference, would suggest otherwise would it not? Or am I just interpreting this all wrong?
UIWebViewNavigationType (New in tvos 9.0)
UIWebView is not available for tvOS, as #JessBowers mentioned in the comments, and is documented here: UIKit Changes for Objective-C, UIKit Changes for Swift.
For a complete list of iOS API's that are available for tvOS refer to: iOS 9.0 to tvOS 9.0 API Differences
Although WebKit/UIWebView is not officially available in tvOS, some people have figured out that it is possible to use that functionality if you are willing to edit your system header files. No word on whether Apple would actually approve a tvOS app that is using such an undocumented API.
http://www.macrumors.com/2015/11/06/apple-tv-4-web-browser-tvos-hack/
https://github.com/steventroughtonsmith/tvOSBrowser
I've never worked on Office Apps before nor have I ever used an API before.
All I want is to develop an Office App for Microsoft Office 2013. I would like to use Bing Maps or Bing Image Search in it. Can anybody guide me through it.
You can find documentation on how to create Office apps here:
http://msdn.microsoft.com/en-us/library/office/jj220082.aspx
http://msdn.microsoft.com/en-us/library/office/jj220065.aspx
Since this is just HTML and JavaScript you can easily use the Bing Maps V7 JavaScript control to add maps. You can find documentation here: http://msdn.microsoft.com/en-us/library/gg427610.aspx
You can also find an interactive SDK here: http://www.bingmapsportal.com/ISDK/AjaxV7#CreateMap1
I need to use flickr in my application. Is there any Flickr C# API for monodroid?
I am using Monodevelop version 3.0.4.7
FlickrNet - http://flickrnet.codeplex.com/ - claims to work with Mono and MonoTouch - so feel free to try it with MonoDroid too!
(I know https://github.com/migueldeicaza/OpenFlowSharp used an earlier version with a patch)
I am trying to write my first app using mono and monotouch, that will be a rest client app.
does monotouch supports the rest starter kit dlls(Microsoft.Http.dll) ?
which options do i have to write a rest client on monotouch ?
Thanks
Hammock on github also supports MonoTouch. Just clone, open Hammock.MonoTouch.sln, build, and pick it out of the /bin/mono folder in the project root.
RestSharp on github!
Is it possible to reference a library such as the Google GData .NET client in a MonoTouch or MonoDroid app? It would make integration with Google's services much easier.
Thank you.
To get that library (or any library, really) to work against MonoTouch or Mono for Android you'd need to compile it against that profile. Out of the box the GData client won't compile against those profiles because it has some dependencies that aren't compatible. There's a post up here by Mike Bluestein that talks about getting it working with MonoTouch. The same approach should also apply to Mono for Android.