iphone week-view calendar to show reservations - iphone

I am looking to build an iphone application to show booking/reservations of a Device. I want to have a week view where I can show the reservations using different colors (Something similar to the one in Google Calendar).
I saw few projects in github which provides month-view, but i could not find the one with week-view.
I am pretty new to iPhone development, and I would appreciate if someone can help me in this regard. Some tutorials which helps in adding an calendar to an application.
Thanks in advance

Why don't you create a google calender and then let the users of your app look at the booking on there. If that is what you want here is the official doc for objective-c
GDataObjCIntroduction - gdata-objectivec-client - Introduction for Objective-C Developers - Project Hosting on Google Code
google code project that access google calendar
iphone-gcal - Project Hosting on Google Code
another client
Downloads - gdata-objectivec-client - Project Hosting on Google Code
a tutorial
How To Use Google APIs with iPhone SDK
Hope this helps.

Related

How to integrate Salesforce in iphone app?

can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK

Google Plus sharing, like button from ios

I am new to iPhone apps development, I want share and like button on google plus for my application, searched in web, but i got many links were pointing to developer.google.com etc. from there i downloaded SDK, but am not able to write code for that.
Please give some example code.
Thanks in advance.
there is a post here, which describes what you plan to do...
How can I integrate Google Plus with iPhone sdk?

Is there an iPhone/iPad application that demonstrates the various API's like the Google Android API Demos app?

Here is a link to the Google app
http://developer.android.com/resources/samples/ApiDemos/index.html
There's tons of sample code:
http://developer.apple.com/library/ios/navigation/index.html#section=Resource%20Types&topic=Sample%20Code
I've not seen anything just like that, though there are tons of working app projects from Apple designed to demonstrate various APIs.
iOS Developer Library
Click Sample Code in the lefthand menu and then sort by framework.

How to use google calendar in iphone application?

I am new in iphone application.i wanted to implement the google calendar in my application, i don't have any kind of idea about this so please give me some example and idea about google calendar.
On Google Calendar API page you can find some useful links: Client libraries for google services, ObjC library, sample Calendar project

trackPageView on Google Analytics for iPhone Not Working

I'm trying to get Google Analytics working on an iPhone application without much luck.
I've followed all the instructions on their website (google/apis/analytics/docs/tracking/mobileAppsTracking.html) and studied their sample application (google/gaformobileapps/GoogleAnalyticsIphone_0.7.tar.gz).
When I run my application and go to Google Analytics' website (https://www.google.com/analytics/reporting/), the only page that is recording is /app_entry_point. I'm seeing one count in my Google Analytics detailed report once every time my app fires up. However, I have added other pages to be tracked but it's not working. Here is a sample of two pages I've added to be tracked:
trackPageview:#"/calculator";
trackPageview:#"/tellafriend";
I call them from various ViewControllers in the app. In each of those view controllers I import the the GANTracker header:
#import "GANTracker.h"
I'll admit it: I'm an objective-c newbie. Any help you can offer is greatly appreciated! Do I need to physically dispatch them to get the trackPageview working? If so, why is the /app_entry_point page the only page that is recorded by Google Analytics?
Have a look on my answer at: Problem dispatching with google mobile analytics for iphone
Hope this will help!