Posts Tagged IPhone

Beginning iPhone App Dev Issues: Part 4 (Multiple lines in navigation bar’s title)

Many a times, we need the UINavigation bar title to have more than one line, we can do this easily by customizing the titleView of the UINavigationItem. The following method would help you get started: – (void)customNavBarTitle: (NSString *)titleStr { UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(([self.title length] < 10 ? UITextAlignmentCenter : UITextAlignmentLeft), 0, 480,44)]; [...]

Tags: , , , , , , , , , ,

Vodafone India – activate GPRS for iPhone without Data Plan

Recently a friend of mine in India, told me that Vodafone(India) is not allowing him to use the regular GPRS plan (Vodafone Live) on iPhone. As per Vodafone, we need to take special iPhone data plan which costs a lot more than the regular plan. So I just tried a few tricks and found a [...]

Tags: , , ,

Maximize the use of Gmail on your Smartphone.

Switching phones is fun, but configuring email, contacts and calendars isn’t. Well Google has a solution. Google is now officially supporting sync for most of the smartphone platforms. If you are an Android user, then you would enjoy these functionalities natively, but even on other platforms, you may rejoice the Google service. The following chart [...]

Tags: , , , ,

What do you think about iPhone 4G launch/availability date?

Tags: , , ,

Search for a Regular Expression: iPhone/iPad Development

There are several instances when we need to search for specific type of text in a string or document. For example, searching for a URL in a HTML file, confirming e-mail address in a web form field and so on. The easiest way to get around this is by using an open source library called: [...]

Tags: , , , , ,