18
2012
Connect IOS App to ASMX Webservice in MAC
Just for sharing, i was working on a project that needs the iphone app to be connected to an asmx webservice. ASMX runs in windows, under .NET architecture. Of course, the best fix is to get a Windows machine. As a MAC user without a Windows PC, I have to figure out how to run a .NET webservice in my MAC so that i can test my iphone app’s webservice with my MACBOOK. Generally, there [...]
18
2012
KLii – Discover Something Special
Check out the latest iPhone app by Ticket-Inn – KLii KLii is not just another app that suggest deals, it learns as you use it. And it suggests what you like/dislike, and what’s nearby. With KLii, you can discover YOUR best deal in town! http://klii.sg
5
2012
CLTickerView – An IOS Ticker
CLTickerView is an IOS library for building a ticker or marquee in HTML. It is built with UIScrollView, UILabel and NSTimer. Features: Animated text from right to left, like HTML Marquee Tap on text to stop, drag to scroll, and release to resume the animation This is how you can use the library: CLTickerView *ticker = [[CLTickerView alloc] initWithFrame:CGRectMake(0, 20, 320, 30)]; //set the text ticker.marqueeStr = @"This is a sample ios marquee using scrollview [...]
26
2012
Customize UISearchBar Background Image
In this post, I’ll walkthrough how to customize the background of UISearchBar. In order to customize the UISearchBar, first we need to know it’s subviews. We can get the subviews by running the code below: for (UIView *subview in [searchBar subviews]) { NSLog(@"%@", [subview class]); } If you run the code above, and you are running IOS 4.3 and above, you should see two subviews “UISearchBarBackground” and “UISearchBarTextField”. So, we know that UISearchBar consist of [...]
26
2012
O level POA iPhone App
New iPhone app released on Chinese New Year, Jan 25, 2012. App name: O Level POA Description: Learn GCE ‘N’ and ‘O’ Level Principles of Accounts by reviewing the notes specially designed for Secondary 3, 4 and 5 students in Singapore. You will be able to read full notes of all topics and test yourself by attempting on at least 10 multiple-choiced questions per topic. Correct answers will be marked in green while wrong answers [...]
17
2012
UILabel With Different Style Text
There are situations when we need to style a UILabel differently for each text. This can be done by using NSAttributedStrings. Thanks to the library OHAttributedLabel, you can achieve the styled NSAttributedStrings easily under one UILabel. In order to use the library, you must first import the CoreText Framework. In the example below, I style the label so that the text are splited into 2 different colors. OHAttributedLabel *label; NSString *txt = @"page (1 of [...]
Ads
Facebook Page
Categories
- Apache (1)
- Apps (2)
- Blog (19)
- IOS (20)
- IOS Library (5)
- iPhone Tutorial (17)
- Javascript (1)
- Node.js (1)
- Twitter (1)


An article by


