Professional iOS Development

06 Aug 2021

Professional iOS Development

What traits do professional developers possess, and how do they apply to the world of iOS and other Apple platforms? What standards do you use for iOS development compared to other platforms? I don’t know the full answer, but I know enough to start the conversation. I’d like to have a talk about Clean code, Clean architecture and modular design, SOLID principles, automated testing, TDD, CI and CD, and more.

About Robert C Martin

Robert Cecil Martin, colloquially called “Uncle Bob” is an American software engineer, instructor, and best-selling author. He is most recognised for developing many software design principles and for being a founder of the influential Agile Manifesto. Five of Martin’s principles have become known collectively as the SOLID principles. He is a proponent of software craftsmanship, agile software development, and test-driven development.

He has authored a series of books on Clean Code and Architecture.

What makes a professional developer

  • Robert Martin is on a continuous quest to answer this question and establish industry standards
  • see The Clean Coder
  • what makes a professional in other fields: medicine, research, sports? They adhere to clear work guidelines, have rules, ethics and committees that verify their output

Professionalism is about taking responsibility

  • Do no harm: don’t create bugs (almost impossible, but still…). Analogy: software systems are very complex and thus impossible to be bug-free. But the human body is also incredibly complex, but doctors still take the oath to do no harm
  • QA should find nothing: delivering faulty code is just unprofessional
  • You must know it works: automated tests
  • Work ethic: your career is your responsibility (trainings, conferences, books, … and the time needed to learn)
  • Know your field:
    • design patterns: GOF
    • design principles: SOLID
    • methods: XP, Scrum, Kanban, Waterfall, …
    • disciplines: TDD, OOD, Structured programming, CI, Pair programming
    • artifacts: UML, State Transition Diagrams and tables, flow charts, …
  • Practice
  • Collaboration
  • Mentoring
  • Know your domain
  • Humility

Saying No and Saying Yes

  • Professionals have the courage to say No to their managers, and they work hard to find creative ways to make Yes possible.
  • Your manager is counting on you to defend your objectives as aggressively as they defend theirs. Both you and your manager need to get to the best possible outcome through negotiation.
  • Professionals pursue and defend their objectives as aggressively as they can.
  • Recognize lack of commitment words and phrases like “hope” and “Let’s see if we can get this done…”. A sincere commitment sounds like “I will do something… by this certain date…”
  • Bring up blockers or red flags as soon as they come up — actively communicate.

Coding

  • Coding is an intellectually challenging and exhausting activity.
  • If you are tired, worried, or distracted, do not code. Your code will have bugs or a bad structure.
  • Spend personal time before work trying to resolve or mitigate personal issues or demands, so you can focus your mental energy on being a productive problem solver at work.
  • Be prepared to be interrupted and help someone — it’s the professional thing to do.
  • Ask for and ask to give help - be a mentor.

Test-Driven Development

  • Writing your tests first:
  • Good tests function like good documentation.
  • TDD is a discipline that enhances certainty, courage, defect reduction, documentation, and design.

Practice, Practice, Practice

  • When performance matters, professionals practice.
  • All professionals practice their art by engaging in skill-sharpening exercises.
  • Doing anything quickly requires practice. It’s not always wise to go fast, but sometimes it is better to do it as fast as possible and is highly productive.
  • Practice coding outside of work by doing katas.
  • Open source: Take on some pro bono work by contributing to an open-source project.

Testing Strategies

Every professional development team needs a good testing strategy, and we can start by following the “Test Pyramid”: (image)

  • Unit tests
  • Component tests
  • Integration tests
  • System tests
  • Manual tests

Time Management

  • What strategies can you use to ensure that you don’t waste time?
  • Meetings are both necessary and huge time wasters. You do not have to attend every meeting — be careful about which ones you decline and those you choose to attend.
  • Use tools like the Pomodoro Technique.
  • Evaluate the priority of each task, disregarding personal fears and desires, and execute those tasks in priority order.

Estimation

  • Estimation is one of the simplest, yet most frightening activities that software professionals face.
  • Know the difference between estimates and commitments.
  • A commitment is something you must achieve. An estimate is a guess.
  • Learn methods to get better estimates like PERT, Fingers in the Air and Planning Poker
  • Always include error bars with your estimates so that the business understands the uncertainty.
  • Don’t make commitments unless you know you can achieve them.

Stay Cool Under Pressure

  • The professional developer is calm and decisive under pressure.
  • Under pressure? Be sure to manage your commitments, follow disciplines, keep code clean, communicate, and ask for help.
  • Don’t succumb to the temptation to create a mess to move quickly.

Collaborate

  • Programming is all about working with people. It’s unprofessional to be a loner or a recluse on a team.
  • Often, programmers have difficulty working closely with other programmers. That’s no excuse. Being a developer means working with people.
  • Meet the needs - collaborate with your managers, business analysts, testers, and other team members to deeply understand the business goals.
  • Pairing is a great way to share knowledge and the best way to review code.

Get Aligned with Your Teams

  • Strive to have a “gelled” team.
  • A gelled team is one that forms relationships, collaborates, and learns each other’s quirks and strengths.
  • Teams are harder to build than projects. It’s better to form persistent teams that move together from one project to the next and can take on more than one project at a time.

Mentoring, Apprenticeship, and Craftsmanship

  • The software development industry has gotten the idea that programmers are programmers, and that once you graduate you can code.
  • Software apprenticeship is a three-step journey: starting from an apprentice and moving to journeyman before becoming a master.
  • Be a craftsman - someone who works quickly, but without rushing, provides reasonable estimates and meets commitments. Know when to say No, but try hard to say Yes.
  • If craftsmanship is your way of life, keep in mind that you cannot force other programmers to become craftsmen.

References

Tags: Clean Code Clean Architecture


Loading...