10 iOS Developer Interview Questions and Answers
Find and hire talent with confidence. Prepare for your next interview. The right questions can be the difference between a good and great work relationship.
Name four important data types found in Objective-C.
Four data types that youโll definitely want your developer to be aware of are as follows:
- NSString: Represents a string.
- CGfloat: Represents a floating point value.
- NSInteger: Represents an integer.
- BOOL: Represents a boolean.
How proficient are you in Objective-C and Swift? Can you briefly describe their differences?
When Swift was first launched in 2014, it was aptly described as โObjective-C without the C.โ By dropping the legacy conventions that come with a language built on C, Swift is faster, safer, easier to read, easier to maintain, and designed specifically for the modern world of consumer-facing apps. One of the most immediately visible differences is the fact that Objective-C lacks formal support for namespaces, which forces Objective-C code to use two- or three-letter prefixes to differentiate itself. Instead of simple names like โString,โ โDictionary,โ and โArray,โ Objective-C must use oddities like โNSString,โ โNSDictionary,โ and โNSArray.โ Another major advantage is that Swift avoids exposing pointers and other โunsafeโ accessors when referring to object instances. That said, Objective-C has been around since 1983, and there is a mountain of Objective-C code and resources available to the iOS developer. The best iOS developers tend to be pretty well versed in both, with an understanding that Swift is the future of iOS development.
What are UI elements and some common ways you can add them to your app?
Buttons, text fields, images, labels, and any other elements that are visible within the application are called UI elements. These elements may be interactive and comprise the user interface (hence the term "UI") of an application. In iOS development, UI elements can be quickly added through Xcodeโs interface builder, or coded from scratch and laid out using NSLayoutConstraints and Auto Layout. Alternatively, each element can also be positioned at exact coordinates using the UIView "(id)initWithFrame:(CGRect)frame" method.
Explain the purpose of the reuseIdentifier in the UITableViewCell constructor:
(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
The reuseIdentifier tells UITableView which cells may be reused within the table, effectively grouping together rows in a UITableView that differ only in content but have similar layouts. This improves scroll performance by alleviating the need to create new views while scrolling. Instead the cell is reused whenever dequeueReusableCellWithIdentifier: is called.
What are some common execution states in iOS?
The common execution states are as follows:
- Not Running: The app is completely switched off, no code is being executed.
- Inactive: The app is running in the foreground without receiving any events.
- Active: The app is running in the foreground and receiving events.
- Background: The app is executing code in the background.
- Suspended: The app is in the background but is not executing any code.
What is the purpose of managed object context (NSManagedObjectContext) in Objective-C and how does it work?
Managed object context exists for three reasons: life-cycle management, notifications, and concurrency. It allows the developer to fetch an object from a persistent store and make the necessary modifications before deciding whether to discard or commit these changes back to the persistent store. The managed object context tracks these changes and allows the developer to undo and redo changes.
Determine the value of โxโ in the Swift code below. Explain your answer.
var a1 = [1, 2, 3, 4, 5]
var a2 = a1
a2.append(6)
var x = a1.count
In Swift, arrays are implemented as structs, making them value types rather than reference types (i.e., classes). When a value type is assigned to a variable as an argument to a function or method, a copy is created and assigned or passed. As a result, the value of "x" or the count of array "a1" remains equal to 5 while the count of array "a2" is equal to 6, appending the integer "6" onto a copy of the array "a1." The arrays appear in the box below.",
a1 = [1, 2, 3, 4, 5]
a2 = [1, 2, 3, 4, 5, 6]
Find the bug in the Objective-C code below. Explain your answer.
@interface HelloWorldController : UIViewController
@property (strong, nonatomic) UILabel *alert;
@end
@implementation HelloWorldController
- (void)viewDidLoad {
CGRect frame = CGRectMake(150, 150, 150, 50);
self.alert = [[UILabel alloc] initWithFrame:frame];
self.alert.text = @"Hello...";
[self.view addSubview:self.alert];
dispatch_async(
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
^{
sleep(10);
self.alert.text = @"World";
}
);
}
@end
All UI updates must be performed in the main thread. The global dispatch queue does not guarantee that the alert text will be displayed on the UI. As a best practice, it is necessary to specify any updates to the UI occur on the main thread, as in the fixed code below:
dispatch_async(
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
^{
sleep(10);
dispatch_async(dispatch_get_main_queue(), ^{
self.alert.text = @"World";
});
});
Explain the difference between raw and associated values in Swift.
This question tests the developerโs understanding of enumeration in Swift. Enumeration provides a type-safe method of working with a group of related values. Raw values are compile time-set values directly assigned to every case within an enumeration, as in the example detailed below:
enum Alphabet: Int {
case A = 1
case B
case C
}
In the above example code, case "A" was explicitly assigned a raw value integer of 1, while cases "B" and "C" were implicitly assigned raw value integers of 2 and 3, respectively. Associated values allow you to store values of other types alongside case values, as demonstrated below:
enum Alphabet: Int {
case A(Int)
case B
case C(String)
}
Youโve just been alerted that your new app is prone to crashing. What do you do?
This classic interview question is designed to see how well your prospective programmer can solve problems. What youโre looking for is a general methodology for isolating a bug, and their ability to troubleshoot issues like sudden crashes or freezing. | In general, when something goes wrong within an app, a standard approach might look something like this: | | ------ | | Determine the iOS version and make or model of the device. | | Gather enough information to reproduce the issue. | | Acquire device logs, if possible. | | Once you have an idea as to the nature of the issue, acquire tooling or create a unit test and begin debugging. | A great answer would include all of the above, with specific examples of debugging tools like Buglife or ViewMonitor, and a firm grasp of software debugging theoryโknowledge on what to do with compile time errors, run-time errors, and logical errors. The one answer you donโt want to hear is the haphazard approachโvisually scanning through hundreds of lines of code until the error is found. When it comes to debugging software, a methodical approach is a must.
iOS Developer Hiring Resources
Explore talent to hire Learn about cost factors Get a job description templateiOS Developers you can meet on Upwork
- $45/hr $45 hourly
Haris R.
- 5.0
- (9 jobs)
Lahore, PUNJABiOS Development
TestingiOSAndroid AppAI ChatbotSupabaseAI BuilderPayment Gateway IntegrationPayment FunctionalityApp DevelopmentGoogle MapsPayment GatewayPush NotificationsCI/CDRESTful APIFirebaseAndroid App DevelopmentDartAI App DevelopmentFlutterYour Flutter (Android, iOS) AI MVP belongs in the App Store in 6 weeks, not 6 months. Senior Flutter developer, 8+ years, shipping AI-powered mobile apps with Firebase and Supabase backends that launch on time and still run clean a year later. I help pre-seed and seed-stage founders turn an idea, a Figma file, or a broken codebase into a production app, one Flutter codebase shipping to iOS, Android, and Web. ๐ก How I work I quote fixed scope and hold it. I run a weekly demo ritual so you never wait two weeks to see progress. I write the kind of code your Series A hire will thank you for. I own the work end to end, from Figma handoff to App Store approval, and I speak product, not just syntax. ๐ฑ Industries I have shipped for HealthTech, Pet Apps, Productivity, FemTech, SaaS, consumer AI, and on-demand (ride hailing, food delivery). ๐ง My stack Mobile: Flutter, Dart, cross-platform mobile development, iOS, Android, Web State and architecture: BLoC, Riverpod, GetX, Provider, Clean Architecture, Hexagonal Architecture Backend: Node.js, Supabase, Firebase (Auth, Firestore, Cloud Functions, FCM, Crashlytics), REST, GraphQL AI: OpenAI, Claude, Gemini, streaming LLM UX, chatbots, voice, image generation, on-device ML Payments: Stripe, Apple Pay, Google Pay, RevenueCat, AdMob, in-app purchases Ship: Codemagic, GitHub Actions, Fastlane, App Store Connect, Google Play Console ๐ What you get when you hire me โ AI-powered Flutter MVPs from idea to live app in 6 to 8 weeks (OpenAI, Claude, Gemini, chatbots, voice, image generation, streaming LLM UX) โ Clean architecture with BLoC, Provider, or Riverpod that your next hire can read on day one โ Custom backend, Supabase, or Firebase wired end to end (Auth, Firestore, Cloud Functions, FCM, Crashlytics, Analytics) โ Stripe, Apple Pay, Google Pay, RevenueCat, AdMob, and in-app purchases that monetize on day one โ App Store and Play Store submission handled for you, including CI/CD via Codemagic or GitHub Actions โ One codebase shipping to iOS, Android, and Web, so you pay for one build, not three ๐ Already have a Flutter app that is slow, crashing, or unshippable? โ Performance audits and crash fixes with a written report โ Legacy refactors to BLoC or Riverpod without breaking live features โ New AI features layered into existing apps (streaming LLM UX, on-device ML, voice) ๐ฉ Send me a message and get a free scoping read Send me your idea, Figma link, or current codebase. Within a few hours you get a written one-pager back, realistic ship date, the three technical calls that decide whether your MVP survives its first 1,000 users, an honest budget range, and a direct answer on whether I am the right Flutter developer for this build. Even if we do not end up working together, you walk away knowing the real risks in your build. - $70/hr $70 hourly
Tudor-Mihai A.
- 5.0
- (9 jobs)
Brasov, BRAลOViOS Development
Couchbase ServerPush NotificationsGolangSwiftUIStripeRxSwiftApple XcodeRESTful ArchitectureMobile App DevelopmentFirebaseIn-App PurchasesSwiftSenior iOS developer specializing in Swift, SwiftUI, and production-grade Apple-platform apps. Iโm deeply specialized in SwiftUI and have pushed it to its limits across complex production apps: custom layouts, advanced state management, async data flows, navigation, animations, performance tuning, UIKit/AppKit interop, and large modular codebases. I help founders and teams turn product ideas into polished, maintainable iOS/macOS apps. My work usually spans architecture, implementation, UX judgment, debugging, integrations, and release readiness. Iโm especially strong with offline-first apps, realtime sync, Apple ecosystem integrations, extensions, widgets, Siri/Shortcuts, Spotlight, and AI-powered product features. Clients usually bring me in when they need more than ticket execution: someone who can take initiative, make sound technical decisions, improve the product experience, and ship reliably. - $69/hr $69 hourly
Faheem K.
- 4.8
- (150 jobs)
Peshawar, DUiOS Development
iOSTypeScriptJavaUIKitApp Store OptimizationPostgreSQLAndroid StudioApple XcodeMobile AppAPI IntegrationMobile App DesignJetPackSwiftUIKotlinSwiftFlutterReact NativeAndroid App DevelopmentMobile App DevelopmentMobile App Developer building production-ready iOS & Android apps โ native (Swift, SwiftUI, Kotlin, Jetpack Compose) and cross-platform (React Native, Flutter). Shipped to App Store & Google Play. โญ $100K+ earned ยท 150+ projects ยท 2,378+ hours on Upwork ยท Fast English communication I design, build, and launch mobile apps that are fast, beautiful, and ready for real users โ from a first MVP to a full production release, or rescuing an app that's stuck. WHAT I BUILD โข Native iOS apps โ Swift, SwiftUI, UIKit, Xcode, Combine, Core Data, CloudKit โข Native Android apps โ Kotlin, Jetpack Compose, Coroutines, Room, Retrofit, MVVM โข Cross-platform apps โ React Native & Flutter (one codebase, both stores) โข AI-powered mobile apps โ ChatGPT/Claude, on-device ML, smart features โข App rescue & modernization โ fix crashes, slow performance, rejected builds EVERY APP INCLUDES โข Clean architecture (MVVM / Clean) so the code scales โข Firebase or custom REST/GraphQL backend integration โข Real-time features, push notifications, in-app purchases, offline-first โข Pixel-perfect UI from your Figma โ or designed from scratch โข Full App Store & Google Play submission (I handle the review process) HOW I WORK 1. Free scoping call โ fixed milestones & timeline 2. Weekly builds you can test on your own device (TestFlight / Play Internal) 3. Clean, documented, handover-ready code โ no lock-in 4. Post-launch support & store-update help STACK iOS: Swift ยท SwiftUI ยท UIKit ยท Objective-C ยท Xcode ยท Combine ยท Core Data ยท CloudKit Android: Kotlin ยท Java ยท Jetpack Compose ยท Coroutines ยท Room ยท Retrofit ยท Hilt/Dagger Cross-platform: React Native ยท Flutter ยท Expo ยท Dart ยท TypeScript Backend & services: Firebase ยท Supabase ยท Node.js ยท REST ยท GraphQL ยท WebSocket Tooling: Git ยท CI/CD (Fastlane, GitHub Actions) ยท App Store Connect ยท Play Console RESULTS Apps shipped to both stores ยท MVPs delivered in 4โ6 weeks ยท existing apps rescued and re-launched ยท long-term partnerships, not disappear-after-delivery freelancing. Tell me about your app idea or the app you need fixed. I'll reply with an honest scope, timeline, and the right approach (native vs cross-platform). I can start this week.
- $45/hr $45 hourly
Haris R.
- 5.0
- (9 jobs)
Lahore, PUNJABiOS Development
TestingiOSAndroid AppAI ChatbotSupabaseAI BuilderPayment Gateway IntegrationPayment FunctionalityApp DevelopmentGoogle MapsPayment GatewayPush NotificationsCI/CDRESTful APIFirebaseAndroid App DevelopmentDartAI App DevelopmentFlutterYour Flutter (Android, iOS) AI MVP belongs in the App Store in 6 weeks, not 6 months. Senior Flutter developer, 8+ years, shipping AI-powered mobile apps with Firebase and Supabase backends that launch on time and still run clean a year later. I help pre-seed and seed-stage founders turn an idea, a Figma file, or a broken codebase into a production app, one Flutter codebase shipping to iOS, Android, and Web. ๐ก How I work I quote fixed scope and hold it. I run a weekly demo ritual so you never wait two weeks to see progress. I write the kind of code your Series A hire will thank you for. I own the work end to end, from Figma handoff to App Store approval, and I speak product, not just syntax. ๐ฑ Industries I have shipped for HealthTech, Pet Apps, Productivity, FemTech, SaaS, consumer AI, and on-demand (ride hailing, food delivery). ๐ง My stack Mobile: Flutter, Dart, cross-platform mobile development, iOS, Android, Web State and architecture: BLoC, Riverpod, GetX, Provider, Clean Architecture, Hexagonal Architecture Backend: Node.js, Supabase, Firebase (Auth, Firestore, Cloud Functions, FCM, Crashlytics), REST, GraphQL AI: OpenAI, Claude, Gemini, streaming LLM UX, chatbots, voice, image generation, on-device ML Payments: Stripe, Apple Pay, Google Pay, RevenueCat, AdMob, in-app purchases Ship: Codemagic, GitHub Actions, Fastlane, App Store Connect, Google Play Console ๐ What you get when you hire me โ AI-powered Flutter MVPs from idea to live app in 6 to 8 weeks (OpenAI, Claude, Gemini, chatbots, voice, image generation, streaming LLM UX) โ Clean architecture with BLoC, Provider, or Riverpod that your next hire can read on day one โ Custom backend, Supabase, or Firebase wired end to end (Auth, Firestore, Cloud Functions, FCM, Crashlytics, Analytics) โ Stripe, Apple Pay, Google Pay, RevenueCat, AdMob, and in-app purchases that monetize on day one โ App Store and Play Store submission handled for you, including CI/CD via Codemagic or GitHub Actions โ One codebase shipping to iOS, Android, and Web, so you pay for one build, not three ๐ Already have a Flutter app that is slow, crashing, or unshippable? โ Performance audits and crash fixes with a written report โ Legacy refactors to BLoC or Riverpod without breaking live features โ New AI features layered into existing apps (streaming LLM UX, on-device ML, voice) ๐ฉ Send me a message and get a free scoping read Send me your idea, Figma link, or current codebase. Within a few hours you get a written one-pager back, realistic ship date, the three technical calls that decide whether your MVP survives its first 1,000 users, an honest budget range, and a direct answer on whether I am the right Flutter developer for this build. Even if we do not end up working together, you walk away knowing the real risks in your build. - $70/hr $70 hourly
Tudor-Mihai A.
- 5.0
- (9 jobs)
Brasov, BRAลOViOS Development
Couchbase ServerPush NotificationsGolangSwiftUIStripeRxSwiftApple XcodeRESTful ArchitectureMobile App DevelopmentFirebaseIn-App PurchasesSwiftSenior iOS developer specializing in Swift, SwiftUI, and production-grade Apple-platform apps. Iโm deeply specialized in SwiftUI and have pushed it to its limits across complex production apps: custom layouts, advanced state management, async data flows, navigation, animations, performance tuning, UIKit/AppKit interop, and large modular codebases. I help founders and teams turn product ideas into polished, maintainable iOS/macOS apps. My work usually spans architecture, implementation, UX judgment, debugging, integrations, and release readiness. Iโm especially strong with offline-first apps, realtime sync, Apple ecosystem integrations, extensions, widgets, Siri/Shortcuts, Spotlight, and AI-powered product features. Clients usually bring me in when they need more than ticket execution: someone who can take initiative, make sound technical decisions, improve the product experience, and ship reliably. - $69/hr $69 hourly
Faheem K.
- 4.8
- (150 jobs)
Peshawar, DUiOS Development
iOSTypeScriptJavaUIKitApp Store OptimizationPostgreSQLAndroid StudioApple XcodeMobile AppAPI IntegrationMobile App DesignJetPackSwiftUIKotlinSwiftFlutterReact NativeAndroid App DevelopmentMobile App DevelopmentMobile App Developer building production-ready iOS & Android apps โ native (Swift, SwiftUI, Kotlin, Jetpack Compose) and cross-platform (React Native, Flutter). Shipped to App Store & Google Play. โญ $100K+ earned ยท 150+ projects ยท 2,378+ hours on Upwork ยท Fast English communication I design, build, and launch mobile apps that are fast, beautiful, and ready for real users โ from a first MVP to a full production release, or rescuing an app that's stuck. WHAT I BUILD โข Native iOS apps โ Swift, SwiftUI, UIKit, Xcode, Combine, Core Data, CloudKit โข Native Android apps โ Kotlin, Jetpack Compose, Coroutines, Room, Retrofit, MVVM โข Cross-platform apps โ React Native & Flutter (one codebase, both stores) โข AI-powered mobile apps โ ChatGPT/Claude, on-device ML, smart features โข App rescue & modernization โ fix crashes, slow performance, rejected builds EVERY APP INCLUDES โข Clean architecture (MVVM / Clean) so the code scales โข Firebase or custom REST/GraphQL backend integration โข Real-time features, push notifications, in-app purchases, offline-first โข Pixel-perfect UI from your Figma โ or designed from scratch โข Full App Store & Google Play submission (I handle the review process) HOW I WORK 1. Free scoping call โ fixed milestones & timeline 2. Weekly builds you can test on your own device (TestFlight / Play Internal) 3. Clean, documented, handover-ready code โ no lock-in 4. Post-launch support & store-update help STACK iOS: Swift ยท SwiftUI ยท UIKit ยท Objective-C ยท Xcode ยท Combine ยท Core Data ยท CloudKit Android: Kotlin ยท Java ยท Jetpack Compose ยท Coroutines ยท Room ยท Retrofit ยท Hilt/Dagger Cross-platform: React Native ยท Flutter ยท Expo ยท Dart ยท TypeScript Backend & services: Firebase ยท Supabase ยท Node.js ยท REST ยท GraphQL ยท WebSocket Tooling: Git ยท CI/CD (Fastlane, GitHub Actions) ยท App Store Connect ยท Play Console RESULTS Apps shipped to both stores ยท MVPs delivered in 4โ6 weeks ยท existing apps rescued and re-launched ยท long-term partnerships, not disappear-after-delivery freelancing. Tell me about your app idea or the app you need fixed. I'll reply with an honest scope, timeline, and the right approach (native vs cross-platform). I can start this week. - $45/hr $45 hourly
Nestor P.
- 5.0
- (21 jobs)
Lviv, LVIV OBLASTiOS Development
SwiftUITabletKotlinFirebaseUser AuthenticationUser Profile CreationQA EngineeringQA TestingUX & UI DesignMobile App DevelopmentSwiftAndroidiOSSmartphoneI specialize in iOS and Android development but also provide end-to-end app development when neededโin partnership with expert UI/UX designers and backend engineers. โข Huma (UK healthtech company, $300M funded) โ Led iOS development, architected the SDK, and built complex features for remote patient monitoring. โข FuboTV (US streaming service with millions of users) โ Developed and optimized video playback on iOS, tvOS, and Chromecast for a seamless streaming experience. ๐ Industry Experience: Healthtech, finance, social networking, communication tools, and moreโfocusing on security, real-time interactions, intuitive UI, and compliance with HIPAA & GDPR standards. ๐ฉ Need expert iOS/Android development or an end-to-end app solution? Letโs discuss how I can help! - $60/hr $60 hourly
Gurwinder S.
- 5.0
- (14 jobs)
Newark, DEiOS Development
Cloud ArchitectureChatbotAWS Systems ManagerDatabase ProgrammingAndroid App DevelopmentI have helped companies with end to end mobile, web, and automation solutions. Having delivered iOS, Android, Web, Chatbots, and RPA solutions, I can help your team realize value at start up speed. Using LEAN methodologies, we can work together to design a custom and robust solution for all your technology needs. I specialize in Financial and Life Sciences. - $60/hr $60 hourly
Luke G.
- 4.9
- (63 jobs)
Westerville, OHiOS Development
Selenium WebDriverSwiftMySQL ProgrammingData ScrapingScriptingSQLFlaskPythonC++I am a full stack developer, proficient in C++, Python, and SQL. My main areas of interest are writing Python scripts for ETL, automated testing, and statistical analysis. - $50/hr $50 hourly
Amandeep S.
- 5.0
- (12 jobs)
Brampton, ONiOS Development
AWS CodeDeployAWS Systems ManagerAndroid App DevelopmentIonic FrameworkSelenium WebDriverAndroid AppReact NativeAWS LambdaPythonGolangAmazon DynamoDBReactNode.jsSQLAngularJSI have extensive experience working with various technologies in the field of software development. My expertise includes SaaS-based application development using Angular JS, React JS, Native iOS-Android, Hybrid Apps, HTML, CSS, and server-side development on AWS and Azure, with a strong emphasis on Bootstrap and Angular. Some of the applications I've worked on are currently live and functioning smoothly. I possess a wealth of experience in both client-side and server-side development, always staying eager to explore and adapt to new technologies. My past projects have involved integrating social media technologies, Google Maps, and real-time socket programming for applications such as chat and dating apps. Here's an overview of my technical skills: Programming: Swift, Java, React JS, Angular JS, Node JS, MVC, AJAX, Web Services, SQL Reporting. Database: MS SQL 2005, MS SQL 2008, MS SQL 2008R2, MS SQL 2014, MS SQL 2017, MS SQL 2018, SQL Server Compact, MySQL, Azure, Stored Procedures, Functions, Triggers, Cursors, Bulk Insertion. Web Technologies: HTML, CSS, JavaScript, jQuery, jQuery UI, Bootstrap, JSON, Angular JS, React JS. Application Tools: MS Visual Studio 2005/2008/2010/2012/2017, IIS, Apache. API Integration: Google Maps API & Google Analytics, Facebook, Google Places API, Twitter, LinkedIn, Amazon Web Services, Azure, Twilio, ZenDesk, Sendgrid. Backend: NodeJS, PHP. Payment Gateway: PayPal, Stripe, RazorPay. Source Control: GitHub, BitBucket, GitLab. Design: Wireframe, Zeplin, Photoshop, Adobe Photoshop, Mock-ups. Thank you for considering my qualifications. - $40/hr $40 hourly
Eric S.
- 5.0
- (1 job)
Kigali, KIGALIiOS Development
SwiftUIReact NativeSwiftNestJSAngularNode.jsNext.jsReactFlaskDjangoPythonWeb DevelopmentTypeScriptJavaScriptWelcome to my profile! Are you seeking a highly skilled Software Engineer with a passion for web and iOS development? Look no further! With 6 years of industry experience, I bring a strong background in creating innovative software solutions that make a positive impact on people's lives. WHAT I OFFER: ๐ Expertise: I possess a comprehensive skill set in JavaScript, Node.js, React, Typescript, Angular, React Native, AngularJS, Swift, SwiftUI, Python, and more. These technologies empower me to tackle diverse projects and deliver exceptional results. ๐ก Problem-solving prowess: I thrive on overcoming challenges and finding creative solutions. With my sharp analytical skills, I swiftly identify and address issues during the development process, ensuring smooth progress and outstanding outcomes. ๐ Track record of excellence: I have consistently delivered high-quality software solutions throughout my career. My attention to detail ensures efficient, maintainable, and scalable code, following best practices and adhering to agile methodologies. ๐ Web Development: I am well-versed in crafting robust web applications, utilizing the latest tools and frameworks. From responsive front-end interfaces to powerful back-end systems, I excel at building seamless and user-friendly experiences. ๐ฑ iOS Development: My expertise extends to the exciting world of iOS development. Leveraging Swift, and SwiftUI, I develop cutting-edge mobile applications that engage users and exceed expectations. Your iOS project is in capable hands. โจ Passion and dedication: I am deeply passionate about my work and driven to make a positive impact. I take pride in delivering results that not only meet client expectations but also bring real value and joy to end users. If you are seeking a dedicated and skilled Software Engineer to join your team, I am here to help. Let's collaborate to turn your vision into reality. Reach out to me today, and let's discuss how we can achieve your goals together. Thank you for visiting my profile, and I look forward to working with you soon! - $70/hr $70 hourly
Syed Raza H.
- 4.9
- (23 jobs)
Karachi East, KARACHIiOS Development
API DevelopmentAPI IntegrationAndroid App DevelopmentFirebaseDartMobile App DevelopmentHybrid App DevelopmentFlutterFlowFlutteriOSAndroidโ ๐๐ ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ ๐ฃ๐จ๐๐ฌ = ๐๐๐,๐๐๐$+ ๐๐๐ซ๐ง๐ข๐ง๐ ๐ฌ ๐๐จ๐ฆ๐ฉ๐ฅ๐๐ญ๐๐ ๐จโ๐ป ๐๐๐ฏ๐๐ฅ๐จ๐ฉ๐๐ & ๐๐ฆ๐ฉ๐ซ๐จ๐ฏ๐๐ ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ ๐๐ฉ๐ฉ๐ฅ๐ข๐๐๐ญ๐ข๐จ๐ง ๐๐ก๐ฎ๐ซ๐ง ๐ซ๐๐ญ๐ข๐จ ๐ญ๐จ ๐๐๐๐ค+ ๐๐จ๐ฐ๐ง๐ฅ๐จ๐๐๐ฌ ๐ฒ ๐๐ฑ๐ฉ๐๐ซ๐ญ๐ข๐ฌ๐ ๐ข๐ง ๐ก๐ข๐ ๐ก ๐ฉ๐๐ซ๐๐จ๐ซ๐ฆ๐๐ง๐๐ ๐ฆ๐จ๐๐ข๐ฅ๐ ๐๐ฉ๐ฉ๐ฅ๐ข๐๐๐ญ๐ข๐จ๐ง๐ฌ ๐พ๐๐ ๐๐? โ Consider me a ๐ ๐๐ง๐ข๐ in ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ & ๐๐จ๐๐๐๐ mobile application, your wish will be my command but not every bad wish will be granted. โ Work with an experienced full-stack ๐๐จ๐๐ข๐ฅ๐ developer that doesn't compromise the code and business needs. โ I won't let you struggle with your needs. ๐๐ฏ๐๐ซ๐ฒ๐ญ๐ก๐ข๐ง๐ ๐ข๐ฌ ๐๐จ๐๐๐ฅ๐ in ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ Mobile application and I have that vision to do it for your business. โ Have enough experience seeing startups ๐ฌ๐ฎ๐๐๐๐๐ ๐๐ง๐ ๐๐๐ข๐ฅ and I don't want you to fail due to any of developers fault. โ I travel in ๐ ๐ฐ๐ข๐ง๐ง๐๐ซ๐ฌ bandwagon so its up to you whether you want to start this journey with me. ๐จ๐๐๐๐ ๐๐? โ ๐๐๐ซ๐ ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ & ๐๐จ๐๐๐๐ ๐๐๐ฏ๐๐ฅ๐จ๐ฉ๐๐ซ wood pecking every details of the code. โ Absolute genius in writing high intensive algorithms to drive your business needs and solve your problems. I developed the ๐ฌ๐ก๐จ๐ซ๐ญ๐๐ฌ๐ญ ๐ซ๐๐ฏ๐๐ง๐ฎ๐ ๐ ๐๐ง๐๐ซ๐๐ญ๐ข๐จ๐ง ๐๐ฅ๐ ๐จ๐ซ๐ข๐ญ๐ก๐ฆ to drive customer growth. โ ๐๐ฅ๐ข๐๐ง๐ญ๐ฌ ๐ซ๐๐ข๐ฌ๐๐ ๐๐ ๐ฆ๐ข๐ฅ๐ฅ๐ข๐จ๐ง ๐ฎ๐ฌ๐๐ซ๐ฌ in 3 years time span. โ Keen eye for detail in developing and transforming design to code. Expertise in Figma, Miro, Sketch, xD. โ Excellent in ๐๐๐ฏ๐๐ฅ๐จ๐ฉ๐ข๐ง๐ & ๐ข๐ง๐ญ๐๐ ๐ซ๐๐ญ๐ข๐ง๐ custom backend(REST or SOAP API's), Supabase, Firebase or AWS Amplify with AWS AppSync. ๐ป๐๐๐๐๐๐๐๐๐๐๐ 1. Queue online Flutter Application - ๐.๐ โญ "๐ ๐ง๐๐๐ก๐ก๐ฎ ๐ก๐๐ ๐ ๐ฌ๐ค๐ง๐ ๐๐ฃ๐ ๐ฌ๐๐ฉ๐ ๐๐ฎ๐๐. ๐พ๐๐ฃ ๐ฉ๐๐ ๐ ๐๐ช๐ก๐ก ๐ค๐ฌ๐ฃ๐๐ง๐จ๐๐๐ฅ ๐๐ฃ๐ ๐๐ง๐๐ซ๐ ๐๐๐ซ๐๐ก๐ค๐ฅ๐ข๐๐ฃ๐ฉ. ๐ผ๐ก๐จ๐ค ๐๐ค๐ค๐ ๐๐ค๐ข๐ข๐ช๐ฃ๐๐๐๐ฉ๐๐ค๐ฃ ๐๐ฃ๐ ๐ฌ๐๐ฃ๐ฃ๐ ๐ก๐๐๐ง๐ฃ." 2. Senior Flutter Developer - Totem - ๐.๐ โญ "๐๐๐ฏ๐ ๐ฌ๐๐จ ๐๐ฃ ๐๐ฃ๐ฉ๐๐๐ง๐๐ก ๐ฅ๐๐ง๐ฉ ๐ค๐ ๐ค๐ช๐ง ๐ฉ๐๐๐ข, ๐ ๐๐ง๐๐๐ฉ ๐๐ค๐ก๐ก๐๐๐ค๐ง๐๐ฉ๐ค๐ง ๐๐ฃ๐ ๐๐ฃ ๐๐ญ๐ฅ๐๐ง๐๐๐ฃ๐๐๐ ๐๐๐ซ. ๐๐ค๐ช๐ก๐ ๐ง๐๐๐ค๐ข๐ข๐๐ฃ๐ ๐๐ฃ๐ฎ ๐ฉ๐๐ข๐." 3. Flutter Food Distribution Application - ๐.๐ โญ "๐๐ง๐๐๐ฉ ๐๐ค๐ ๐ซ๐๐ง๐ฎ ๐จ๐๐ฉ๐๐จ๐๐ฎ๐๐ฃ๐ ๐ฌ๐๐ฉ๐ ๐๐๐จ ๐ฌ๐ค๐ง๐ , ๐ ๐ฌ๐ค๐ช๐ก๐ ๐๐๐๐๐ฃ๐๐ฉ๐๐ก๐ฎ ๐ง๐๐๐ค๐ข๐ข๐๐ฃ๐ ๐ฉ๐ค ๐๐๐ง๐ ๐๐๐ข ๐๐๐๐๐ฃ" 4. Getscope Flutter Application - ๐.๐ โญ "๐ผ๐ฌ๐๐จ๐ค๐ข๐ ๐๐ญ๐ฅ๐๐ง๐๐๐ฃ๐๐. ๐๐ค๐ช๐ก๐ ๐๐๐๐๐ฃ๐๐ฉ๐๐ก๐ฎ ๐ง๐๐๐ค๐ข๐ข๐๐ฃ๐." ๐บ๐๐๐๐ ๐ ๐๐๐๐ ๐ ๐๐๐? Next steps: ๐ฉ Invite me or send a message and I will be at your service. ๐ฌ Just write me a note so that I am at your disposal to discuss further requirements. Just do the initial steps and leave the rest to me. - $50/hr $50 hourly
Yusuf D.
- 4.5
- (22 jobs)
Istanbul, KARTALiOS Development
In-App PurchasesPayment FunctionalitySmartphoneSwiftNode.jsiOSFirebaseiOS SDKApp Store OptimizationI am Yusuf, your iOS Developer. I make iOS / visionOS / iPadOS / macOS / watchOS / tvOS apps as YOU wish with the requirements. I am experienced with UIKit and SwiftUI besides MVC, MVVM, Viper, Clean Swift, and reactive programming such as RxSwift. I follow SOLID principles and OOP. I can work from scratch to publish on the store. I can also do product management to make your ideas live! Last but not least I can manage your marketing side such as ASO, keyword optimization, Apple Search Ads and more. - $35/hr $35 hourly
Yanuar A.
- 5.0
- (6 jobs)
Purbalingga, PURBALINGGA REGENCYiOS Development
Google Maps APIJavaSupabaseFirebase Realtime DatabaseFirebase Cloud FirestoreExpo.ioFlutterFlowLaravelGoogle MapsAnalyticsReact NativeFirebaseGitFlutterAndroid App DevelopmentSenior Mobile Engineer with 10+ years of experience in scalable mobile architecture, system design, and cross-platform development. Delivered measurable product growth (up to 80% conversion uplift) while accelerating engineering velocity through modular, shared codebases using Flutter, Kotlin Multiplatform, and expanding into React Native. Strong background in real-time systems, performance optimization, and technical leadership. Skills: Flutter, Android, Kotlin, Java, React Native, iOS, Swift, Kotlin Multiplatform, Mobile Architecture, System Design, Clean Architecture, MVVM, Modularization, Cross-Platform Development, Agora SDK, Firebase Cloud Messaging (FCM), Real-Time Systems, Performance Optimization, Jetpack Compose, Coroutines, Room Database, Retrofit, Android SDK, REST APIs, Firebase Auth, Firebase Crashlytics, Cloud Functions, Supabase, Stripe, Google Maps SDK, Here Maps SDK, BloC, Riverpod, GetX, Koin, Hilt, get_it, Google Analytics, Meta App Events, Appsflyer, Branch IO SDK, MoEngage, Growthbook, RevenueCat, GitHub, CI/CD, SQL, Agile Development, Technical Mentorship, Remote Collaboration - $80/hr $80 hourly
Maxim M.
- 5.0
- (10 jobs)
Barcelona, CTiOS Development
Apple XcodeiPhone UI DesignSmartphoneiOSRealm DatabaseObjective-CSwiftFirebaseJSONiOS SDKCore LocationCryptographyUIKitSenior iOS Developer Fundamentals: Master Degree of Computer Science 10+ released projects 7+ years of iOS development experience 2+ years of Project Management experience (side, pet projects) Professional skills: - Highly proficient in object oriented methodologies, design patterns, data structures, algorithms, quality coding skills and excellent debugging skills; - Expert iOS platform mobile application development skills with a proven record of creating commercial quality software. Preference for Swift skills; - Debugging skills with proven experience in Xcode, Instruments and other performance analysis tools; - Strong experience and skills developing Swift and Objective-C iOS applications with Xcode; - Proven working experience with Apple products and services; - Strong problem-solving skills by identifying and correcting bottlenecks and fixing bugs. - Effective English communication skills. - $70/hr $70 hourly
Saadi D.
- 5.0
- (28 jobs)
Gaza, GAZA STRIPiOS Development
UIKitApple XcodeAPI IntegrationRESTful APIREST APICore MLSwiftUISwiftI help startups and businesses build high-performance iOS apps using modern SwiftUI and AI integration (CoreML & LLM APIs). Top Rated on Upwork | $10K+ Earned | 5-Star Reviews Whether you need a new app from scratch or want to add AI features to your existing iOS app โ I deliver clean, maintainable code on time. What I specialize in: - SwiftUI โ modern, responsive iOS interfaces - CoreML & AI integration โ smart app features - REST API & backend integration - App Store submission & optimization Let's build something great together. - $40/hr $40 hourly
Pablo C.
- 5.0
- (2 jobs)
Toronto, ONiOS Development
Apple XcodeiPhone UI DesignARKitJSONSwiftUIKitHello, I am Pablo, an iOS Engineer from Bolivia who loves making beautiful, outstanding apps. I have a Bachelor's and Master's degrees in engineering and more than 4 years of experience with iOS development. I developed a range of applications of my own ranging from Augmented Reality apps to content creation apps for social media. Iโm currently working at Rappi full time, working on improving the architecture and developing important features for this super-app. - $35/hr $35 hourly
Artem S.
- 5.0
- (15 jobs)
Dnipro, DNIPROPETROVSK OBLASTiOS Development
Image ProcessingiPad App DevelopmentApple XcodeRESTful ArchitectureUser AuthenticationLocation-Based ServiceAPI IntegrationIn-App PurchasesMobile App DevelopmentiOSFirebaseObjective-CSwiftSwiftUI๐ผ๐ซ๐๐๐ก๐๐๐ก๐ ๐๐ฃ๐ ๐ง๐๐๐๐ฎ ๐ฉ๐ค ๐จ๐ฉ๐๐ง๐ฉ ๐ข๐๐ ๐๐๐ฏ๐๐ฅ๐จ๐ฉ๐๐ซ with ๐๐+ ๐ฒ๐๐๐ซ๐ฌ of professional experience. Most time I was working in the professional software company on a wide range of mobile apps: real estate, messaging, blogging, geo-location, photo scanning and etc. I am focused on delivering clean, readable, solid and self-explaining Swift code. Implementing pixel-perfect design, from mockups, according to the Apple Human Interface Guidelines, with full attention to details. Here are my core skills and experiences: โข iOS frameworks: ๐ฆ๐๐ถ๐ณ๐๐จ๐, UIKit, CoreData, Compose, AVFoundation, Vision, MapKit, CoreLocation, StoreKit and etc โข Client-server applications (JSON, REST, WebSocket, WebRTC, Firebase) โข Push notifications and in-app purchases: ๐๐๐ฏ๐๐ง๐ฎ๐๐๐๐ญ, Apphud, Stripe, OneSignal โข Worked with Meta(Facebook), OpenAI, Google API and other โข Location and integration Maps (Google maps, Apple maps) โข Integrate: Flurry, GoogleAnalytics, AdMob and etc โข Instruments: Xcode, Fastlane, Postman, Proxyman, Github, GitBucket, Trello, Jira โข Backend experience: ๐ ๐ข๐ซ๐๐๐๐ฌ๐(Firestore, Storage, Messaging, Config, A/B), AWS, Swift(Vapor), Python(FastAPI), Matrix(Synapse), Docker, PostgreSQL, Redis. - $40/hr $40 hourly
Cahyanto Setya B.
- 5.0
- (10 jobs)
Cilacap, JAWA TENGAHiOS Development
GrafanaTerraformAWS CodePipelineAWS CodeBuildKubernetesObject-Oriented ProgrammingUnit TestingCocoa APIGitiOS SDKApple XcodeFirebaseRealm DatabaseChat & Messaging SoftwareiOSSmartphoneTabletUIKitSwiftHi, Iโm a DevOps Engineer with a strong background in iOS development, bringing end-to-end understanding from application to infrastructure. I help teams build reliable systems, streamline deployments, and improve production stability โ while also being able to jump into mobile (iOS) when needed. ๐ง What I can help you with DevOps / Platform Engineering: * Design and maintain CI/CD pipelines * Set up monitoring & alerting (Prometheus, Grafana) * Improve system reliability and incident response * Optimize cloud infrastructure and reduce costs * Containerization & orchestration (Docker, Kubernetes) iOS Development (Support / Extension): * Debugging and fixing production issues * Maintaining legacy or hybrid apps (WebView / JSBridge) * Implementing features or improving app performance * CI/CD setup for mobile projects โธป โ๏ธ Tech Stack * DevOps: Docker, Kubernetes, CI/CD, Prometheus, Grafana * Backend / Infra: REST API, MySQL * Mobile: Swift, UIKit, MVVM, RxSwift, Firebase * Tools: Git, Postman, Xcode โธป ๐ก Why work with me * Hybrid skillset: understand both application and infrastructure * Focus on reliability, scalability, and efficiency * Able to adapt quickly and work across different parts of the system * Strong experience working on production systems โธป If youโre looking for someone who can not only build features but also ensure your system runs smoothly in production โ feel free to reach out. Cheers, Cahyanto - $200/hr $200 hourly
Bill V.
- 5.0
- (84 jobs)
Wayne, NJiOS Development
PostgreSQL ProgrammingJetPackKotliniPad App DevelopmentAR & VRCocoa APIApple XcodeUnityFirebase Cloud FirestoreSwiftObjective-CMobile App DevelopmentFirebaseC#I help startup founders and established businesses launch high-quality iOS, Android, Web, and cross-platform apps fast. As a senior mobile developer, Iโve shipped dozens of apps using SwiftUI, React Native, React Web, Kotlin, Unity, Firebase, AWS, and Azure, including an AR app for NASAโs Visitor Center at Goddard. Whether youโre building an MVP, adding features, or integrating with cloud services, I bring solo execution and clean delivery. No bloated teams. No hand-holding required. Recent and notable work: โข NASA: Unity-based AR app for iOS and Android โข iOS startups: Social and animation-sharing apps โข AI integrations: OpenAI, Hugging Face, RAG, and API workflows โข React Web apps with backend integrations โข AR/VR product visualization tools โข Firebase Functions and Azure cloud apps โข Published apps on App Store and Google Play Clients hire me for: โข Full app builds from scratch โข Debugging and scaling existing codebases โข Fast turnaround on scoped deliverables U.S.-based | Rutgers CS graduate (4.0 GPA) | Available for hourly or fixed-scope work - $40/hr $40 hourly
Shahzaib A.
- 5.0
- (56 jobs)
Islamabad, HEiOS Development
Native App DevelopmentHybrid App DevelopmentAndroidRxSwiftMobile App DevelopmentiOSSwiftUISwiftJetPackAndroid SDKJavaKotlinReactive ProgrammingAndroid App DevelopmentAre you tired of maintaining two separate codebases for Android and iOS? I help startups and businesses ship both platforms faster with a single, shared Kotlin codebase using Kotlin Multiplatform (KMP) and Compose Multiplatform (CMP). While most developers build for one platform, I specialize in the modern cross-platform stack that reduces your development cost by up to 50% โ without sacrificing native performance or user experience. โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ง WHAT I BUILD โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Cross-platform apps with shared UI using Compose Multiplatform (CMP) โ Shared business logic across Android & iOS with KMP โ Native Android apps with Jetpack Compose & Clean Architecture โ Migrating existing Android apps to Kotlin Multiplatform โ In-App Purchases, subscriptions & RevenueCat / Play Billing integration โ Push notifications (FCM / APNs), WebSockets & background processing โ REST API & WebSocket integration with Ktor โ Local caching with SQLDelight / Room KMP โ PDF generation, file handling, document upload & viewers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ๏ธ TECH STACK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Cross-Platform : Kotlin Multiplatform (KMP), Compose Multiplatform (CMP) Android : Jetpack Compose, MVVM, Clean Architecture, Coroutines, Flow iOS : SwiftUI interop, Xcode, CocoaPods / SPM integration Networking : Ktor, Retrofit, WebSockets, REST APIs Storage : SQLDelight, Room KMP, DataStore DI : Koin, Hilt CI/CD : GitHub Actions, Fastlane, App Store Connect, Play Console Other : Firebase, OneSignal, RevenueCat, Coil, Kotlin Serialization โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ผ REAL-WORLD EXPERIENCE โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ I've shipped production KMP apps including AI-powered tools that run identically on Android and iOS with shared networking, business logic, background task processing, PDF exports, and subscription flows. I understand both platforms deeply: Android lifecycle, iOS Info.plist entitlements, App Store review guidelines, and Google Play publishing. โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ WHY CLIENTS CHOOSE ME โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ One developer. Both platforms. One codebase. โ Senior-level experience โ no hand-holding needed โ Clear communication and on-time delivery โ I write code you can maintain, not spaghetti you'll regret If you want a developer who truly understands Kotlin Multiplatform and Compose Multiplatform not just someone who Googled it โ let's talk. Send me a message describing your project and I'll respond within a few hours. - $40/hr $40 hourly
Dagnachew B.
- 5.0
- (49 jobs)
Addis Ababa, ADDIS ABABAiOS Development
API IntegrationSwiftNative App DevelopmentKotlinHybrid App DevelopmentMobile App DevelopmentiOSAndroid App DevelopmentFlutterSmartphoneAndroidFirebaseDartJava"During the project, Dani was always professional, and patient... For our next project we will 100% contact Dani again, heโs our main guy!" โ Recent Client I am a Senior Full Stack Engineer with over 6 years of experience building scalable web and mobile applications. I specialize in delivering end-to-end solutions, from robust backend systems to responsive frontend interfaces. Core Competencies: โข Web Development: React.js, Vue.js, Next.js, Nuxt.js, AngularJS, TypeScript, Tailwind CSS โข Mobile Development: Flutter, React Native, iOS (Swift), Android (Kotlin) โข Backend: Django, Node.js, Laravel, Firebase, Supabase, Express.js, GraphQL โข Cloud & DevOps: AWS, Docker, Kubernetes, Terraform, Nginx, Apache, CI/CD โข Databases: PostgreSQL, MySQL, MongoDB, DynamoDB, Redis, Elasticsearch Key Strengths: โข Full Lifecycle Development: Expert in taking projects from concept to deployment. โข Technical Versatility: Deep understanding of networking protocols, system architecture, and optimization. โข Communication: Committed to transparent, regular updates and proactive problem-solving. Education: โข BSc in Software Engineering โ Addis Ababa University I am ready to help you build your next great product. Let's discuss your project requirements. - $110/hr $110 hourly
Jameson S.
- 5.0
- (31 jobs)
Sandy, UTiOS Development
NoSQL DatabaseAngular MaterialWebsiteEntity FrameworkASP.NET CoreASP.NET Web APIApp DevelopmentGitUser Interface DesignTypeScriptiOSAndroidFirebaseIonic FrameworkMobile App DevelopmentAngular10+ years experience. I build products that are easy for users to understand. I work quickly, as I believe most progress is made during iteration, after user/client feedback. By choosing me as your developer, your project will get done sooner than you think. I pride myself in being an extraordinarily fast developer while still maintaining high-quality standards. - $35/hr $35 hourly
Alex H.
- 4.9
- (8 jobs)
Odessa, ODESSA OBLASTiOS Development
Front-End DevelopmentMongoDBTypeScriptJavaScriptSwiftHTMLReduxFirebaseAndroid App DevelopmentNode.jsReactPHPReact NativeMobile App Development๐ React Native Developer โข Mobile App Developer โข React Developer โข Senior Full Stack Developer I design and ship cross-platform apps in React Native, React, JavaScript, and TypeScript for Android and iOS. I pair React Native with Node.js and Firebase, keep API surface small with focused API Integration, and aim for understandable outcomes: 12 production apps shipped, 8 live on App Store and Google Play, 4.6+ average ratings, 99.7% crash-free sessions. ๐ฑ Mobile App Development โข React Native features for Android and iOS: onboarding, auth, real-time feeds, push, deep links, offline sync โข iOS Development and Android App Development: store submissions, review responses, privacy compliance, release notes โข Performance you can feel: cold start down 30-50%, bundle size down 20-35% on typical React Native projects โ๏ธ Server and data โข Node.js and Firebase backends with simple, fast API endpoints and pragmatic API Integration โข Analytics and events you can trust: funnels, cohorts, and alerts wired into React / JavaScript flows โข Rollouts without drama: over-the-air updates, staged releases, quick rollbacks ๐ My results from recent projects โข E-commerce (React Native, Node.js, Firebase): Android conversion +11%, iOS retention +8%, p95 320 ms โข On-demand service (React Native): push engagement +25%, cold start -42%, weekly releases kept NPS +12% โข Social app (React Native): crash-free 99.7%, time-to-interactive -35%, support tickets for API issues -40% after API Integration cleanup ๐งช Quality and delivery โข Testing: Jest and Detox on key paths, realistic fixtures for React / JavaScript / TypeScript components โข CI/CD: Fastlane and GitHub Actions, TestFlight and Play Console pipelines, release time down 50โ70% โข Documentation you can hand over: runbooks, tracking plans, minimal API docs ๐งฐ Tech stack (for search and clarity) React Native, React, JavaScript, TypeScript, Android, iOS, Node.js, Firebase, API Integration, API, Mobile App Development, iOS Development, Android App Development ๐ฉ How I can help Looking for a React Native Developer who can also cover Mobile App Developer duties, collaborate as a React Developer, and step in as a Senior Full Stack Developer when needed? Letโs chat about your Android and iOS roadmap and choose the smallest possible API and the right integrations to get there. - $50/hr $50 hourly
Dmytro S.
- 5.0
- (11 jobs)
Halifax, NSiOS Development
ARKitARCoreApp MarketplaceGoogle PlayGame DevelopmentVuforiaWebsocketsAndroid App DevelopmentAR & VRPhoton Unity NetworkingC#๐ 30+ Game & Augmented Reality apps with over 40 million downloads developed ๐ฏ You've just found a proficient Game & Augmented Reality developer with considerable experience in commercial development. If you need expert knowledge of Unity - anything from General Scripting, Prototyping, Reskinning, Scene-Creation, Asset / Plugin-Integration, UI-Interactions, Animations, Data-Visualizations, 2D, GUI, Networking, porting to Android, etc. - or even just finding and fixing a bug, I can help you. ๐ฏ For you, I can make a game from scratch. The job will be done in the shortest terms and with the highest possible quality. ๐ฏ My passion for Games and Augmented Reality is durable and drives me to find new and challenging projects! ๐ My skills and knowledge cover: โข Development environments: MS Visual Studio / Xcode โข Programming languages: C# / Java / PHP โข Technology platforms: Android / iOS / PC / macOS / WebGL โข Engines: Unity 3D 4.6 - 2019.X.X โข Augmented Reality SDKs: Vuforia Engine / ARCore / ARKit / AR Foundation โข Multiplayer: Photon Engine โข Version control systems: SVN / Git + Submodules โข Management tools: Trello, Jira โข DBMS: MySQL / SQLite / MongoDB โ๏ธ Also I'm high skilled in plugins integration: โข PlayFab / GameSparks / Firebase โข Facebook / Twitter / Instagram โข Google services / Game Center : In-Apps / Leaderboards / Achievements / Cloud Saves โข Local & Push Notifications โข Google Analytics / Flurry / GameAnalytics โข Advertisements: MoPub, AdMob, ChartBoost, UnityAds, Vungle, Fyber, different Mediation services and other โ Why choose me over other freelancers? โข Experience: During my career, I managed to work with both small and large projects, from hyper-casual games to much more complex projects and projects with augmented reality. โข Client Reviews: I focus on providing VALUE to all of my Clients and Earning their TRUST. The Client Reviews and Feedback on my Profile are immensely important to me and the value that I provide. โข Over-Delivering: This is core to my work as a Freelancer. My focus is on GIVING more than what I expect to RECEIVE. โข Responsiveness: Being extremely responsive and keeping all lines of communication readily open with my Clients. โข Resilience: Reach out to any of my Current of Former Clients and ask them about my Resilience. Any issue that my Clients face, I attack them and find a SOLUTION. โข Kindness: One of the biggest aspects of my life that I implement in every facet of my life. Treating everyone with respect, understanding all situations, and genuinely wanting to IMPROVE my Client's situations. โข Passion: I'm always trying to keep up with the latest technology and always solve any problems on my way. ๐ There are six phases I follow during my process: โข Task Definition - That's where our work gets started. I prefer to learn all about the project and the clientโs goals in detail before starting the project so that we are on the same page and we don't have any misunderstandings in the future. โข Research โ No one knows everything, so after defining the tasks, there may be a need to study some new tool or subject area in order to move to the next stage in maximum readiness. โข Estimation - An approximate determination of the time and money spent on the entire project as a whole or some of its initial part. โข Development โ Step by step, I implement all the necessary mechanics and interaction and show you the results of the work so that you approve the readiness of one or another part of the project, until the release. โข Release โ For quick and easy release, I prepare all sources for you. You'll get all files, assets, scripts, manuals so you can release the app immediately. โข Support โ I'm not leaving my work at a halfway point. You can rely on my support for your project on future interactions and versions. ๐ค Together, we can make things happen! So if you are looking for someone to handle the Unity 3D development part of your project, someone that's easy to talk to and very transparent in communication, someone to bring your idea to life, whether its game development or any other sort of app development, please consider me. I will be more than happy to have a chat, and assist you in any manner I can. ๐ฉ Feel free to contact me with any questions. Let's create something great together! Highlighted skills: Game, game development, Unity game, Unity game development, Augmented Reality, Augmented Reality game, WebGL, Android, iOS, PC, Unity WebGL, C#, Unity C#, database development, advertisement integration, analytics integration, plugins integration, services integration, social media integration, multiplayer implementation, prototyping, reskinning, scripting, management, researching, programming, estimation, arcade game, card game, education game, stealth game, an action game, adventure game, simulation, role-playing, puzzle game, online multiplayer, first-person shooter, sports, casual, board game, hyper-casual, quest, etc. Updated: 12 2021 - $50/hr $50 hourly
Evan L.
- 4.7
- (39 jobs)
Tacoma, WAiOS Development
FacebookEmail MarketingSoftware Architecture & DesignAndroid App DevelopmentGoogle AdsObject-Oriented ProgrammingWeb HostingWeb DevelopmentFront-End DevelopmentDo you have an app idea? Need your MVP built? Need to build a unique, dynamic website? Look no further. My goal is to save your business precious time and money by building your app or website with a software called Bubble. This is a powerful, fully customizable, scalable program built specifically to help founders launch their start ups quickly and efficiently. I've been building custom applications and websites on the Bubble.is platform for 3 years now. My projects include: -social networking websites -job/freelancing platforms -SMS applications -Payroll applications -IT & Custom Software for small - medium sized businesses If you're looking for a web developer -- look no further. Leveraging the power of Bubble, I can turn your idea into a working application faster than most coders and at a reasonable price. - $50/hr $50 hourly
Ammad A.
- 5.0
- (3 jobs)
Islamabad, ISLฤMฤBฤDiOS Development
Realm DatabaseRxSwiftUIKitSwiftiOSModel View ViewModelMobile UI DesignI am a native IOS Mobile Application Developer that loves to code in Swift primarily, but objC is a secondary choice. My coding skills are top-notch as I develop applications with the latest Apple frameworks updated to the latest swift version and clean code architecture design patterns keeping in mind the future scalability of the application. My objective is to provide my clients with the best quality of work, as I believe that my success is directly related to the success of my clients. The most important part of a project to me is clearly understanding the client's requirements, turning them into required features to bring fortunes of success for my clients. - $50/hr $50 hourly
Tayyab S.
- 4.9
- (34 jobs)
Gujranwala, PUNJABiOS Development
JavaLaravelFlutter StackSocial Media Account IntegrationiOSApple XcodeAndroidAndroid App DevelopmentMobile App DevelopmentFlutterDartTV SetExperienced Software Engineer with a strong background in designing, developing, and maintaining high-quality software solutions. Proficient in multiple programming languages and frameworks, I specialize in full-stack development, system architecture, and software optimization. Skilled in agile methodologies and collaborative problem-solving, I thrive in fast-paced environments and excel at delivering efficient and scalable solutions. With a passion for clean code and continuous learning, I am committed to delivering robust and innovative software solutions that exceed client expectations. - $60/hr $60 hourly
George M.
- 5.0
- (3 jobs)
Ilford, ENGLANDiOS Development
API DevelopmentUsability TestingAWS LambdaSwiftUIMobile App DesignAndroid App DevelopmentKotlinSwiftMobile App DevelopmentMobile App Developer since 2014 working on mobile apps across both Android and iOS, working in both small startups as well as large enterprises. I have worked primarily in the health, medical devices, fitness and travel sectors. - $100/hr $100 hourly
Yonathan R.
- 5.0
- (42 jobs)
Melbourne, VICiOS Development
FirebaseReact NativeAndroid App DevelopmentRESTful APIFront-End DevelopmentReduxHTMLMongoDBCSSExpressJSVue.jsReactNode.jsJavaScriptA professional software engineer with a focus on JavaScript, proficient in both front-end and back-end development. Known for providing effective solutions to a wide range of problems, consistently receiving positive feedback from both clients and colleagues. With strong communication abilities and natural problem-solving skills, stands out as a reliable team player. Want to browse more talent?
Sign up
Join the worldโs work marketplace

Post a job to interview and hire great talent.
Hire Talent