Is it possible to display a Google Calendar in an iPhone app using a calendar-type view similar to that of the "Calendar" app instead of a WebView? What library do you recommend using to display the calendar? Thanks.
I've never tried it, but you could check this framework out: https://github.com/devinross/tapkulibrary
It's got a TKCalendarMonthView class.
Related
I'm developing an iPhone App. One Feature should be an PhoneCall-Button on the LockScreen and a Button to show some Information in a different view.
Is this possible without a Jailbreak?
If your answer is YES, how to do it?
No, it is not possible without a jailbreak.
I wish to add a UIViewController to my iOS PhoneGap application which will be loaded before
the UIWebView is loaded - some kind of splash screen which will play a video, before the actual web page is loaded.
Is that possible using PhoneGap? can someone share their experience doing something like that?
Thanks!
I don't think it's possible in a regular phonegap project because you can't call a plugin until the device is ready, and that happens after showing the phonegap view.
But you can create a native project, create the first view controller and then change to a second view controller with a phonegap webview embedded
For more info about embedding phonegap webviews in native project see cleaver doc
Is it okay use popovers in iPhone app? What Apple's documentation say about that?
I'm not talking about the standard popover (which would throw an exception), but a custom library like this.
Thank you very much!
Apple wont have any problems with any Custom UI. You can go ahead..!!
Yes you can use popovers in iPhone app. The Best example of it is in Facebook app.
I'm using 4.2 sdk version.
Is there any control for a calendar view similar to the ipads calendar app? im using Kal on the iphone, but as it seems it is not available as ipad version. Is there anything for the ipad yet?
If use Kal it is not equivalent to ipad. See Sample image below
Thanks in Advance...
I did it. I simply modified some codes manually, I used Kal project. Finally i got the correct solution.
See my Calendar image in iPad now
I think you can use the same for iPad too.But you will have to set the frame of KalView again for iPad device if detected.So you will have two different frames for iPhone and iPad.
One thing more you have a method in your KalView class.Go through it you will see a method named :
- (id)initWithFrame:(CGRect)frame delegate:(id<KalViewDelegate>)theDelegate logic: (KalLogic *)theLogic
{
//change the size for content view
}
When you get a call on iPhone a system alert it is shown. There is a nice answer call button, can I use somehow this button on my app or i have to design it by myself?
I suppose this are system resources and could be available in the API.
It is not available for public use in the iOS SDK as of iOS 5
I don't really know how to fetch tat button from an iPhone or its simulator but why don't you customize your own button using this site http://dabuttonfactory.com/ ? It helped me sometimes when I needed buttons for my apps as well.