Latest stories

Using FBGraph in iPhone

U

The FBGraph API is bit complex, but much useful than any other ways for accessing contents of Facebook. INTRODUCTION ============ Object Output: { “name”: “Facebook Platform”, “type”: “page”, “website”: “;, “username”: “platform”, “founded”: “May 2007”, “company_overview”:...

How to use CKeditor in php

H

step 1. Download CKeditor file. step 2. Paste ckeditor file on root directory or you can paste it where the files of your project. step 3. Add the Javascript and code into desired page. Add javascript to the files for which you will use the editor – <script type=”text/javascript” src=”ckeditor/ckeditor.js”></script> <script...

Send Email With Attached Files from Iphone application

S

step 1 : – add MessageUI framework step 2 : #import “MessageUI/MessageUI.h” – add MFMailComposeViewControllerDelegate to .h file step 3 : – code in .m file on an clicked event of send Button if ([MFMailComposeViewController canSendMail]) { // csv file path details for attachments NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory...

How to play movie in iphone using unity3d

H

this is code used to play the video in iphone using unity 3d using UnityEngine; using System.Collections; public class IntroMovie : MonoBehaviour { void Start ()  { iPhoneUtils.PlayMovie(“CINEMATIC_WITH_MUSIC.mp4”,Color.black, iPhoneMovieControlMode.CancelOnTouch,iPhoneMovieScalingMode.AspectFit);   } } one important thing in order to play video files it should be placed in...

Data Sharing on iCloud from iPhone/iPad with iOS 5.0

D

In Apple’s recent release iOS 5.0, major feature is iCloud service. iCloud is the service for sharing data of your application which is running in different devices. iCloud service can be use in application many different ways i.e. data sharing (where you can set values on key like for application NSUserDefaults), Document sharing and database sharing by using core data. For iCloud...

Relationship in Salesforce

R

When two objects are related in the database, they are linked together by a relationship field. This allows you to associate related information easily between objects. All relationships maintain some form of a parent-child relationship. This can be thought of as a hierarchical structure where one object looks up to the other, and as such, you only need to create one relationship field. You...

Dropbox Integration in Iphone

D

Requirements: 1. You need the 4.0 version of the iPhone SDK. The version of your XCode should be at least 3.2.3. 2. You need to have registered as a Dropbox application with mobile access at . You should have a consumer key and secret. 3. You need to download the dropbox sdk from  A. Adding DropboxSDK to your project 1. Open your project in XCode 2. Right-click on your project in the group tree...

Internationalization in Java

I

Internationalization, in relation to computer programming, is the process of designing and writing an application so that it can be used in a global or multinational context. An internationalized program is capable of supporting different languages, as well as date, time, currency, and other values, without software modification. This usually involves “soft coding” or separating...

How to create dynamic drop downs in Salesforce?

H

I had task of creating two drop downs for a custom object in Salesforce: 1. Country – Listing all countries of the world. 2. State – Listing all States for selected Country dynamically. This wasnt a visualforce page, had to do it through custom fields itself. So I came across Dependent Fields concept in Salesforce. Its pretty easy to use and I just loved the way Salesforce has made it...

Drop Down Custom View For iPhone applications.

D

Wanted to have a drop-down view like we have in html element, allows user to select one option form list of option. Have created sample application that demonstrates the use of this custom view. Sample project available to download athttp://code.google.com/p/dropdowndemo/downloads/list. Adding instruction how to use view in you application. Import QuartzCore.framework in your application...

Category