The Valuable Toolset for iOS Development

简介: The Valuable Toolset for iOS Development Work smarter, and faster. Be a better engineer.

The Valuable Toolset for iOS Development

Work smarter, and faster. Be a better engineer.


I believe in working smarter rather than working harder. With the right tool, you eliminate work that is around the issue, and go straight into the point.

Some tools will cost a bit of money, but those money saves you hours of workaround. You will learn to use better tools, be more productive, and earn more, and use better tools, and become even more productive... Nice karma, isn’t?

Lets start with something more essential.

1. Gitx (rowanj-dev)

rowanj-dev Gitx fork

Git is a command line code management system, which you should already be using, which is very useful for helping you to manage your code versions. It’s so powerful that it supports feature branches, tags, submodules, logs, etc, and you probably want to have a GUI that shows your commit tree in a fashionable way.

There’re many variants of git clients, such as other forks of opensouce Gitx,TowerSourceTree, etc.

I highly recommend to not depend on the GUI client for daily operationsand learn to deal with commands in git command line. Common ones likepushfetchmergetagclone, etc. This helps you understand and master the concept behind git, and with this Gitx fork, it also provides command line integration which you can easily fire up the GUI with $ gitx, can’t live without it.

2. gitignore.io

We will quickly learn that some of the files should really never be committed into the repository. How you’d tell git is to commit an additional.gitignore file.

You probably don’t want to do it manually on every project you started. Just run the following command:

$ gi xcode,objective-c > .gitignore

3. Reveal

Inspecting the iPhone AppStore app. So each section is UICollectionViewCell embedding a UICollectionView.

To see UI changes, we used to recompile our app, highly inefficient.

Reveal is a UI inspector, as well as a runtime debugger. You can look into the view hierarchy, update, and modify different properties. This is a real time saver and make you understand a lot more on how your app works.

Its power is not just limited to inspecting our own app. Peter Steinbergershowed us how we can also do it in other apps. Sometimes the world becomes better with less secrets ;P.

4. SimPholders

Official image

Quickly get access to your application documents directory for your iPhone Simulator apps.

There you can find your database files and persistent storages and caches, such an essential utility to debug applications that provides offline experience.

In case you’re looking for an alternative, there’s another called Folder Simulator.

5. Liya

Database schema from the Core Data modal

Looking into Core Data records without a proper tool could be a pain. What worse is that Xcode doesn’t provide a way for you to do so.

Liya isn’t fancy at all, but it’s very light weighted and worked really well without locking up your database while in use. Simply use SimPholder to find an app’s Documents folder, locate the sqlite database files, then start browsing.

7. PAW

Making sure a REST API works properly and knowing exactly how to configure a request would most probably saves you lots of trial and errors without recompiling and going through all the UI hassles.

PAW not just lets you manage your API endpoints, it also caches the results and support environmental variables. It also allows you to save the whole session and reference it later, or to share to the team as well.

What sets PAW apart is it’s code generation tool. Not just simple cURL, but even NSURLConnection/AFNetworking Objective-C code. Working with network requests are so much easier on iOS.

6. Charles

Inspecting network from all the api.* endpoints

Sometimes you’ll just need to really know what has been delivered in and out of the app. How many times you’d look into console and stretch your head, but not sure about why it went wrong with the API requests and response?

Charles is simply the best network inspector I found. Make sure you know that you can also inspect your real device with a certain setup.

8. HexColorPicker

A palette of main colors that have been using through the  Carshare.hkapp

The vanilla color picker in Xcode doesn’t allow you to specify HEX value colours. However it’s basically a standard format for designers and web developers.

This little plugin brings back the power to you. In fact, if we are not HEX colour directly, the manual conversion to 0…1 value results in rounding errors, which actually affects the color displayed on screen. We would always be happier to be able to stick with the design as close as possible.

9. ColorSense for Xcode

http://youtu.be/eblRfDQM0Go

I guess one video is better than a thousand words. Such a small useful Xcode plugin that helps you visualize your color in code.

When you use it together with HexColorPicker, working with colors suddenly become pretty enjoyable.

10. FuzzyAutoComplete

You can type a lot faster. This plugin makes your autocomplete works like Open in… feature in Xcode.

It might not be for everyone, but it won’t hurt for trying out. You can also learn some great techniques by reading the project page.

11. CocoaDeveloper Quicklook Plugin

Simply want to know if the provisioning is properly installed? Use this little quicklook plugin and directly see what devices are allowed.

You probably want to use the iPhone Configuration Utility as well to manage your provisioning profile, which has been missing since Xcode 5.

12. Testflight

The official way to beta test your app requires a number of procedures:

  1. ask them for their device id
  2. adding them to your provisioning profile
  3. recompile your app
  4. host the new binary on a server with a version specific meta file
  5. send them the installation link
  6. contact them to click on the link

After all that, you are still on your own to keep track of who has already been sent, and which version they’re on. Testflight provides the hosting, distribution list, installation tracking, crash reports, and even SDK for in-app updates and feedback, which saves you a lot of pain, and it’s free.

Update: Sounds like Testflight is going to discontinue their service, aftergetting accquired by Apple. You’d be interested in the 7 testflight alternatives.

13. Linguan

At some point you’d really want to sell your app world wide, and Localization became important.

Translation if probably something you’d need help from others, and Xcode has been really bad at allowing others to involve and distributing that task. You had to generate a string file, and it doesn’t help you to do merging, lots of headache.

Linguan must be stepping towards the right direction, it helps you regenerate new missing tokens, and handle the merging for you.

Updates: The link was the original version from @cocoanetics, and it is now maintained by Peer Assembly.

14. Tokens

Such a nice app that helps you keep track of your redeem code. They even send you push notifications when tokens get redeemed.

To become extra productive, I guess someone would want a free copy ofPomodoroApp?

http://tokn.co/quykevce

http://tokn.co/ky78jas5

Feel free to get updates from @pomodoroapp if you like it.

15. PaintCode

Drawing in code could easily suck up a large portion of the development time. Here’s the tool that would save you hours even days of work. I got blown away by checking out their video tutorials, they’re genius.

I would have missed this app without the kind advice from @daveverwer.


Conclusion

That’s it, whats your favourite tool, anything I’m missing out?

I’ve to thank @aschndr for providing comments and number of tools that he’d been using, as well as his kind support on Ripple. Also thank @orta for the updated information on testflight.

We’ve been maintaining a really meaningful discussion in the Ripple iOS Development room, and we’d like to welcome any seasoned developers to participate with us.

Follow @jamztang on Twitter, and you’ll want to follow this collection for more iOS development articles!

目录
相关文章
|
27天前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
97 1
|
1月前
|
设计模式 安全 Swift
探索iOS开发:打造你的第一个天气应用
【9月更文挑战第36天】在这篇文章中,我们将一起踏上iOS开发的旅程,从零开始构建一个简单的天气应用。文章将通过通俗易懂的语言,引导你理解iOS开发的基本概念,掌握Swift语言的核心语法,并逐步实现一个具有实际功能的天气应用。我们将遵循“学中做,做中学”的原则,让理论知识和实践操作紧密结合,确保学习过程既高效又有趣。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你打开一扇通往iOS开发世界的大门。
|
1月前
|
搜索推荐 IDE API
打造个性化天气应用:iOS开发之旅
【9月更文挑战第35天】在这篇文章中,我们将一起踏上iOS开发的旅程,通过创建一个个性化的天气应用来探索Swift编程语言的魅力和iOS平台的强大功能。无论你是编程新手还是希望扩展你的技能集,这个项目都将为你提供实战经验,帮助你理解从构思到实现一个应用的全过程。让我们开始吧,构建你自己的天气应用,探索更多可能!
61 1
|
2月前
|
IDE Android开发 iOS开发
探索Android与iOS开发的差异:平台选择对项目成功的影响
【9月更文挑战第27天】在移动应用开发的世界中,Android和iOS是两个主要的操作系统平台。每个系统都有其独特的开发环境、工具和用户群体。本文将深入探讨这两个平台的关键差异点,并分析这些差异如何影响应用的性能、用户体验和最终的市场表现。通过对比分析,我们将揭示选择正确的开发平台对于确保项目成功的重要作用。
|
2月前
|
开发框架 数据可视化 Java
iOS开发-SwiftUI简介
iOS开发-SwiftUI简介
|
3天前
|
设计模式 前端开发 Swift
探索iOS开发:从初级到高级的旅程
【10月更文挑战第28天】在这篇技术性文章中,我们将一起踏上一段探索iOS开发的旅程。无论你是刚入门的新手,还是希望提升技能的开发者,这篇文章都将为你提供宝贵的指导和灵感。我们将从基础概念开始,逐步深入到高级主题,如设计模式、性能优化等。通过阅读这篇文章,你将获得一个清晰的学习路径,帮助你在iOS开发领域不断成长。
25 2
|
8天前
|
安全 API Swift
探索iOS开发中的Swift语言之美
【10月更文挑战第23天】在数字时代的浪潮中,iOS开发如同一艘航船,而Swift语言则是推动这艘船前进的风帆。本文将带你领略Swift的独特魅力,从语法到设计哲学,再到实际应用案例,我们将一步步深入这个现代编程语言的世界。你将发现,Swift不仅仅是一种编程语言,它是苹果生态系统中的一个创新工具,它让iOS开发变得更加高效、安全和有趣。让我们一起启航,探索Swift的奥秘,感受编程的乐趣。
|
10天前
|
Swift iOS开发 开发者
探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】在苹果生态系统中,SwiftUI的引入无疑为iOS应用开发带来了革命性的变化。本文将通过深入浅出的方式,带领读者了解SwiftUI的基本概念、核心优势以及如何在实际项目中运用这一框架。我们将从一个简单的例子开始,逐步深入到更复杂的应用场景,让初学者能够快速上手,同时也为有经验的开发者提供一些深度使用的技巧和策略。
35 1
|
28天前
|
移动开发 前端开发 Swift
iOS 最好的应用程序开发编程语言竟然是这7种
iOS 最好的应用程序开发编程语言竟然是这7种
74 8
|
26天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异:从代码到用户体验
【10月更文挑战第5天】在移动应用开发的广阔天地中,安卓和iOS两大平台各占半壁江山。它们在技术架构、开发环境及用户体验上有着根本的不同。本文通过比较这两种平台的开发过程,揭示背后的设计理念和技术选择如何影响最终产品。我们将深入探讨各自平台的代码示例,理解开发者面临的挑战,以及这些差异如何塑造用户的日常体验。