Essential objective-C class library for 10 IOS efficient development

Source: Internet
Author: User
Tags website server

Http://www.codeios.com/thread-26-1-1.html

Because the ios sdk is relatively low-level, developers have to do more physical work. Fortunately, there are many third-party class libraries that can be used to simplify a lot of unnecessary work. after careful discussion by the author team, they selected 10 class libraries that can greatly improve iOS development efficiency. According to the comments of the original author, these 10 tools are basically available, the same is true for iOS development as for bubble cocoa.

1. mbprogresshud-Progress indicator Library

Apple's applications generally use an elegant, translucent progress display, but this API is not public, so if you use it, it is likely to be removed from the appstore. Mbprogresshud provides an alternative solution. From the user perspective, the implementation effect cannot be seen as different from the official program. Other additional functions are provided, such as virtual progress indicators and completion prompts. It is also easy to integrate into the project. I will not discuss it here.

2. asihttprequest-HTTP network library

Of course, the iPhone also has its own HTTP Network API. Why should I use asihttprequest? Because the official API is just a bit cool! The asihttprequest Library greatly simplifies network communication, provides more advanced tools, File Upload tools, redirection processing tools, verification tools, and so on. As long as you have something to do with HTTP, using this will definitely make you feel a wonderful life! Let's take a look at a piece of code.

  1. (Void) loadappdevmag
  2. {
  3. Nsurl * url = [nsurl urlwithstring: @ "http://www.appdevmag.com"];
  4. Asihttprequest * request = [asihttprequest requestwithurl: url];
  5. [Request setdelegate: Self];
  6. [Request startasynchronous];
  7. }
  8. -(Void) requestfinished :( asihttprequest *) Request
  9. {
  10. // Use when fetching text data
  11. Nsstring * responsestring = [Request responsestring];
  12. }

Copy code


3. JSON framework-JSON support

If your application interacts with the website server, JSON is used. But in fact, the native class library of iOS platform does not support JSON at all, which is a little sharp? However, the JSON frame meets all your requirements, including a parser that parses JSON strings into objects, and a generator that generates strings from objects. This library is too popular. JSON has been mentioned many times, so I will not talk about it in terms of its specific characteristics. The so-called "a piece of code wins thousands of words" is a demonstration of it with a piece of code.

  1. // JSON string-> nsdictionary
  2. Nsstring * jsonstring = @ "{/" foo/":/" bar /"}";
  3. Nsdictionary * dictionary = [jsonstring jsonvalue];
  4. Nslog (@ "dictionary value for/" foo/"is/" % @/"", [dictionary objectforkey: @ "foo"]);
  5. // Nsdictionary-> JSON string
  6. Nsstring * newjsonstring = [dictionary jsonrepresentation];

Copy code

4. flurry-detailed usage statistics

Furry allows you to obtain statistics about the number of users, user activity, and user sources of the application. But what's best about it is that you can track the events and error records of the application. All the data will be displayed on a Google Analytics-like interface, in this way, you can easily master user behaviors and problems. Of course, there are a lot of statistical tools on this planet, but this is a solution that I personally admire.

 

5. regexkitlite-Regular Expressions supported

We all know the regular expression. But when the iPhone SDK does not exist? How can this be tolerated! Use regexkitlite. Although it is called lite, the function is full. Sample Code.

  1. // Finds phone number in format Nnn-NNNN
  2. Nsstring * RegEx = @ "[0-9] {3}-[0-9] {3}-[0-9] {4 }";
  3. For (nsstring * match in [textview. Text componentsmatchedbyregex: RegEx]) {
  4. Nslog (@ "phone number is % @", match );
  5. }

Copy code

6. Facebook ios sdk-Facebook API class library

Facebook login on the iPhone, which fully supports the Facebook Graph API and the older rest API. If your application is related to Facebook, believe me, use this.

 

7. sdwebimage-simplified network image processing

Using sdwebimage to call images on a website is as simple as calling images built in the app package locally. The operation is also very simple.

  1. [Imageview setimagewithurl: [nsurl urlwithstring: @ "http: // examp

Copy code

Similar functions are available in three20. Let's talk about them later. In comparison, sdwebimage mainly provides a small, precise, simple and convenient solution.

8. gdata client-class libraries for all Google-related services on the iPhone

The name indicates everything. It is worth mentioning that this project is very open for Google. There are many sample programs for download.

9. coreplot-2D graphics Plotter

Coreplot has many solutions to visualize your data ., At the same time, it will also provide a variety of fascinating graphic effects, such as Rod charts, pie charts, and line charts. on their websites, it also provides a large number of sample images, many stock price applications, game scores, personal Financial management is in use.

10. three20-General IOS Library

The three20 class library is made by Facebook itself, and is big and all his biggest characteristic. It may take a long time to integrate three20 into an existing project. However, if three20 is used at the beginning, especially when many web-related projects are involved, you will be able to deeply understand what a magic horse is.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.