SlideShare a Scribd company logo
1 of 18
Minimise the Burden on Battery
iOS Application Battery
Optimization Techniques
How to Increase an iPhone Battery Usage
People find battery a serious concern but few iOS app designing
tips
and can easily extend the battery usage of an iPhone without
compromising the . Perhaps the most ignored tip is keeping your
iPhone beyond the reach of hot sun or avoid leaving it in a hot car.
Heat shortens the battery’s performance significantly
Turn Down the Volume
In order to minimize the impact of audio on
your iphone it is recommended to turn down
your volume as well as prefer headphones
when
Possible. Go to Setting>Music to set a volume
limit as well as to turn off the EQ in order to
save even more battery
Stop the Location Services
It is evident that when your iphone is used to
track location then it drains huge amount of
battery. You can stop this by going into
Setting>Privacy>Location Services and turn off
any app that you don’t want should track you.
Going a step further you can also turn off the
Frequent Location, Diagnostic and Usage and
Location-Based iAds by going into
Setting>Privacy>Location
Services>SystemServices
Turn Off Unnecessary Animations
Parallax effect and Dynamic Wallpapers are for
sure two very attractive thing on your iPhone
but impact your iPhone Battery very negatively.
Once you put a pause on these it will surely save
you substantial amount of battery. To do this go
to Settings>General>Accessibility and turn on
the Reduce motion. Now go to
Settings>Wallpapers & Brightness> Choose
Wallpaper and select some static wallpaper
Turn Off Unnecessary Animations
Parallax effect and Dynamic Wallpapers are
animated using information via iPhone’s
sensors about the way in which you are holding
and moving the phone hence these effect drain
a substantial amount of battery
Do the Download Beforehand
There are multiple movie and music streaming
services where option to download the data for
offline listening and viewing is available.
Streaming data using the iPhone data pack will
put extra burden on the device battery. Now
downloading ahead of time you want it will
enable your battery to go further.
Smart Prioritization for Remote Notification
Delivery
Smart Prioritization for Remote Notification
Delivery
There are multiple elements contained within the remote
notifications delivered by the server to Apple Notification
Service like payload data, an expiration date and a priority.
Notifications can be delivered immediately or can be scheduled
for an energy-efficient time. Here using two levels of push
priority you can you can decide which notification to be
delivered instantaneously or need to be sent later.
Discover those Services and Characteristics that
You Actually Need
A peripheral usually has more than enough services to
perform specific use case in an app. It is therefore,
recommended to figure out the particular services and
characteristics required by your app. This can be done using
particular UUIDs to discover services: and
discoverCharacteristics:forService: methods of the
CBPeripheral class
Discover those Services and Characteristics that
You Actually Need
Discovering particular services
OBJECTIVE-C
// Look for services matching a specific set of UUIDs
[peripheral discoverServices:@[firstServiceUUID, secondServiceUUID]];
SWIFT
// Look for services matching a specific set of UUIDs
peripheral.discoverServices([firstServiceUUID, secondServiceUUID])
Discover those Services and Characteristics that
You Actually Need
Discovering particular service characteristics
OBJECTIVE-C
// Look for characterstics matching a specific set of UUIDs for a given service
[[peripheral discoverCharacteristics:@[firstCharacteristicUUID,
secondCharacteristicUUID]
forService:interestingService]];
SWIFT
// Look for characterstics matching a specific set of UUIDs for a given service
peripheral.discoverCharacteristics([firstCharacteristicUUID,
secondCharacteristicUUID], forService: interestingService)
Disconnect from the Device When You Don't Need
It
To avoid your app from meaninglessly using the device’s radio simply disconnect
it from a peripheral device if some characteristic is no longer providing
notifications or even if the extra data is not required anymore. Cancel every
notification subscriptions by passing a value of NO to the
setNotifyValue:forCharacteristic: method of the CBPeripheral class. Now
disconnect from the device by calling the cancelPeripheralConnection: method of
the CBCentralManager class
Disconnect from the Device When You Don't Need
OBJECTIVE - C
// Unsubscribe from a characteristic value
[self.peripheral setNotifyValue:NO forCharacteristic:interestingCharacteristic];
// Disconnect from the device
[self.myCentralManager cancelPeripheralConnection:peripheral];
SWIFT
// Unsubscribe from a characteristic value
self.peripheral.notifyValue(false, forCharacteristic: interestingCharacteristic)
// Disconnect from the device
self.myCentralManager.cancelPeripheralConnection(peripheral)
Multiple factors affect the amount of energy required to do the
network operations on a device.
1. Cellular network activity requires much more energy than performing an
activity over Wi-Fi.
2. Poor or fluctuation in signal conditions may result in slow or problematic
transactions, which must be avoided.
3. Low network throughput (bandwidth) means radios need to stay more than
usual for performing the transactions.
4. The geographic location and preferred cellular provider can affect the amount of
energy consumption because signal conditions and throughput vary very often.
Networking Variable Effect on the Energy
Guideline for content refresh optimization
Try to limit the number of views your app uses.
1. Avoid using opacity especially for the content that changes
frequently.
2. Prefer only recommended frameworks while developing
games. These frameworks are optimized to provide good
performance.
iOS Application Battery Optimization Techniques

More Related Content

Similar to iOS Application Battery Optimization Techniques

How to Lower Android Power Consumption Without Affecting Performance
How to Lower Android Power Consumption Without Affecting PerformanceHow to Lower Android Power Consumption Without Affecting Performance
How to Lower Android Power Consumption Without Affecting Performancerickschwar
 
ibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawkibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawkDavid Jones
 
5 unique features of ibeacon app development
5 unique features of ibeacon app development5 unique features of ibeacon app development
5 unique features of ibeacon app developmentSilicon It Hub Pvt Ltd.
 
5 Conditions to be Added to Your Mobile App Testing Checklist
5 Conditions to be Added to Your Mobile App Testing Checklist5 Conditions to be Added to Your Mobile App Testing Checklist
5 Conditions to be Added to Your Mobile App Testing ChecklistImpressico Business Solutions
 
PPT on Android Applications
PPT on Android ApplicationsPPT on Android Applications
PPT on Android ApplicationsAshish Agarwal
 
AEM Apps Enhanced: In-app Messaging and Beacons by John Fait
AEM Apps Enhanced: In-app Messaging and Beacons by John FaitAEM Apps Enhanced: In-app Messaging and Beacons by John Fait
AEM Apps Enhanced: In-app Messaging and Beacons by John FaitAEM HUB
 
How iBeacon Could Disrupt Consumer Experiences
How iBeacon Could Disrupt Consumer ExperiencesHow iBeacon Could Disrupt Consumer Experiences
How iBeacon Could Disrupt Consumer ExperiencesInlight
 
Workshop: Building location-aware mobile apps with iBeacons
Workshop: Building location-aware mobile apps with iBeaconsWorkshop: Building location-aware mobile apps with iBeacons
Workshop: Building location-aware mobile apps with iBeaconsHeather Downing
 
iPhone Presentation
iPhone PresentationiPhone Presentation
iPhone Presentationftmedubai
 
How To Make Your App Available Offline.pdf
How To Make Your App Available Offline.pdfHow To Make Your App Available Offline.pdf
How To Make Your App Available Offline.pdfSatawaretechnologies1
 
iBeacon security overview
iBeacon security overviewiBeacon security overview
iBeacon security overviewLocalz
 
Android Pro Tips - IO 13 reloaded Event
Android Pro Tips - IO 13 reloaded EventAndroid Pro Tips - IO 13 reloaded Event
Android Pro Tips - IO 13 reloaded EventRan Nachmany
 
Building Location Aware Mobile Apps with iBeacons
Building Location Aware Mobile Apps with iBeaconsBuilding Location Aware Mobile Apps with iBeacons
Building Location Aware Mobile Apps with iBeaconsHeather Downing
 
Stop freakin it's just a beacon seattle tech forum
Stop freakin it's just a beacon   seattle tech forumStop freakin it's just a beacon   seattle tech forum
Stop freakin it's just a beacon seattle tech forumJames Senior
 
Internet of things, and rise of ibeacons
Internet of things, and rise of ibeaconsInternet of things, and rise of ibeacons
Internet of things, and rise of ibeaconsJanusz Chudzynski
 
Updates on the Data Center Apps Program
Updates on the Data Center Apps ProgramUpdates on the Data Center Apps Program
Updates on the Data Center Apps ProgramAtlassian
 
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLECómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLESolstice Mobile Argentina
 

Similar to iOS Application Battery Optimization Techniques (20)

How to Lower Android Power Consumption Without Affecting Performance
How to Lower Android Power Consumption Without Affecting PerformanceHow to Lower Android Power Consumption Without Affecting Performance
How to Lower Android Power Consumption Without Affecting Performance
 
ibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawkibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawk
 
Final Project
Final ProjectFinal Project
Final Project
 
5 unique features of ibeacon app development
5 unique features of ibeacon app development5 unique features of ibeacon app development
5 unique features of ibeacon app development
 
5 Conditions to be Added to Your Mobile App Testing Checklist
5 Conditions to be Added to Your Mobile App Testing Checklist5 Conditions to be Added to Your Mobile App Testing Checklist
5 Conditions to be Added to Your Mobile App Testing Checklist
 
PPT on Android Applications
PPT on Android ApplicationsPPT on Android Applications
PPT on Android Applications
 
AEM Apps Enhanced: In-app Messaging and Beacons by John Fait
AEM Apps Enhanced: In-app Messaging and Beacons by John FaitAEM Apps Enhanced: In-app Messaging and Beacons by John Fait
AEM Apps Enhanced: In-app Messaging and Beacons by John Fait
 
How iBeacon Could Disrupt Consumer Experiences
How iBeacon Could Disrupt Consumer ExperiencesHow iBeacon Could Disrupt Consumer Experiences
How iBeacon Could Disrupt Consumer Experiences
 
Workshop: Building location-aware mobile apps with iBeacons
Workshop: Building location-aware mobile apps with iBeaconsWorkshop: Building location-aware mobile apps with iBeacons
Workshop: Building location-aware mobile apps with iBeacons
 
iPhone Presentation
iPhone PresentationiPhone Presentation
iPhone Presentation
 
Android battery optimization
Android battery optimizationAndroid battery optimization
Android battery optimization
 
How To Make Your App Available Offline.pdf
How To Make Your App Available Offline.pdfHow To Make Your App Available Offline.pdf
How To Make Your App Available Offline.pdf
 
iBeacon security overview
iBeacon security overviewiBeacon security overview
iBeacon security overview
 
Android Pro Tips - IO 13 reloaded Event
Android Pro Tips - IO 13 reloaded EventAndroid Pro Tips - IO 13 reloaded Event
Android Pro Tips - IO 13 reloaded Event
 
Building Location Aware Mobile Apps with iBeacons
Building Location Aware Mobile Apps with iBeaconsBuilding Location Aware Mobile Apps with iBeacons
Building Location Aware Mobile Apps with iBeacons
 
Stop freakin it's just a beacon seattle tech forum
Stop freakin it's just a beacon   seattle tech forumStop freakin it's just a beacon   seattle tech forum
Stop freakin it's just a beacon seattle tech forum
 
Mobile Application Testing
Mobile Application TestingMobile Application Testing
Mobile Application Testing
 
Internet of things, and rise of ibeacons
Internet of things, and rise of ibeaconsInternet of things, and rise of ibeacons
Internet of things, and rise of ibeacons
 
Updates on the Data Center Apps Program
Updates on the Data Center Apps ProgramUpdates on the Data Center Apps Program
Updates on the Data Center Apps Program
 
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLECómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
 

More from Singsys Pte Ltd

Technical Seminar Series: GIT Pull Requests Best Practices
Technical Seminar Series:  GIT Pull Requests Best PracticesTechnical Seminar Series:  GIT Pull Requests Best Practices
Technical Seminar Series: GIT Pull Requests Best PracticesSingsys Pte Ltd
 
Laravel Security Standards
Laravel Security Standards Laravel Security Standards
Laravel Security Standards Singsys Pte Ltd
 
Android OS - The Journey of most popular Operating System
Android OS - The Journey of most popular Operating SystemAndroid OS - The Journey of most popular Operating System
Android OS - The Journey of most popular Operating SystemSingsys Pte Ltd
 
How to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsHow to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsSingsys Pte Ltd
 
Introduction to facebook sdk
Introduction to facebook sdkIntroduction to facebook sdk
Introduction to facebook sdkSingsys Pte Ltd
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designersSingsys Pte Ltd
 
Joomla 3 installation and management guide
Joomla 3 installation and management guideJoomla 3 installation and management guide
Joomla 3 installation and management guideSingsys Pte Ltd
 
Joomla Introduction & Installation Tutorial
Joomla Introduction & Installation TutorialJoomla Introduction & Installation Tutorial
Joomla Introduction & Installation TutorialSingsys Pte Ltd
 
Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developersSingsys Pte Ltd
 
WordPress Website Design and Development
WordPress Website Design and DevelopmentWordPress Website Design and Development
WordPress Website Design and DevelopmentSingsys Pte Ltd
 
Points for Design and Development of SEO friendly websites
Points for Design and Development of SEO friendly websitesPoints for Design and Development of SEO friendly websites
Points for Design and Development of SEO friendly websitesSingsys Pte Ltd
 

More from Singsys Pte Ltd (18)

Technical Seminar Series: GIT Pull Requests Best Practices
Technical Seminar Series:  GIT Pull Requests Best PracticesTechnical Seminar Series:  GIT Pull Requests Best Practices
Technical Seminar Series: GIT Pull Requests Best Practices
 
Laravel Security Standards
Laravel Security Standards Laravel Security Standards
Laravel Security Standards
 
Android OS - The Journey of most popular Operating System
Android OS - The Journey of most popular Operating SystemAndroid OS - The Journey of most popular Operating System
Android OS - The Journey of most popular Operating System
 
How to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsHow to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy Steps
 
Basics of-linux
Basics of-linuxBasics of-linux
Basics of-linux
 
SoLoMo
SoLoMoSoLoMo
SoLoMo
 
Introduction to facebook sdk
Introduction to facebook sdkIntroduction to facebook sdk
Introduction to facebook sdk
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
 
Joomla 3 installation and management guide
Joomla 3 installation and management guideJoomla 3 installation and management guide
Joomla 3 installation and management guide
 
Joomla Introduction & Installation Tutorial
Joomla Introduction & Installation TutorialJoomla Introduction & Installation Tutorial
Joomla Introduction & Installation Tutorial
 
Basic of web design
Basic of web designBasic of web design
Basic of web design
 
Embedded Technology
Embedded TechnologyEmbedded Technology
Embedded Technology
 
Java Tutorial
Java TutorialJava Tutorial
Java Tutorial
 
Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developers
 
WordPress Website Design and Development
WordPress Website Design and DevelopmentWordPress Website Design and Development
WordPress Website Design and Development
 
Being a designer
Being a designerBeing a designer
Being a designer
 
Points for Design and Development of SEO friendly websites
Points for Design and Development of SEO friendly websitesPoints for Design and Development of SEO friendly websites
Points for Design and Development of SEO friendly websites
 

Recently uploaded

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 

Recently uploaded (20)

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 

iOS Application Battery Optimization Techniques

  • 1. Minimise the Burden on Battery iOS Application Battery Optimization Techniques
  • 2. How to Increase an iPhone Battery Usage People find battery a serious concern but few iOS app designing tips and can easily extend the battery usage of an iPhone without compromising the . Perhaps the most ignored tip is keeping your iPhone beyond the reach of hot sun or avoid leaving it in a hot car. Heat shortens the battery’s performance significantly
  • 3. Turn Down the Volume In order to minimize the impact of audio on your iphone it is recommended to turn down your volume as well as prefer headphones when Possible. Go to Setting>Music to set a volume limit as well as to turn off the EQ in order to save even more battery
  • 4. Stop the Location Services It is evident that when your iphone is used to track location then it drains huge amount of battery. You can stop this by going into Setting>Privacy>Location Services and turn off any app that you don’t want should track you. Going a step further you can also turn off the Frequent Location, Diagnostic and Usage and Location-Based iAds by going into Setting>Privacy>Location Services>SystemServices
  • 5. Turn Off Unnecessary Animations Parallax effect and Dynamic Wallpapers are for sure two very attractive thing on your iPhone but impact your iPhone Battery very negatively. Once you put a pause on these it will surely save you substantial amount of battery. To do this go to Settings>General>Accessibility and turn on the Reduce motion. Now go to Settings>Wallpapers & Brightness> Choose Wallpaper and select some static wallpaper
  • 6. Turn Off Unnecessary Animations Parallax effect and Dynamic Wallpapers are animated using information via iPhone’s sensors about the way in which you are holding and moving the phone hence these effect drain a substantial amount of battery
  • 7. Do the Download Beforehand There are multiple movie and music streaming services where option to download the data for offline listening and viewing is available. Streaming data using the iPhone data pack will put extra burden on the device battery. Now downloading ahead of time you want it will enable your battery to go further.
  • 8. Smart Prioritization for Remote Notification Delivery
  • 9. Smart Prioritization for Remote Notification Delivery There are multiple elements contained within the remote notifications delivered by the server to Apple Notification Service like payload data, an expiration date and a priority. Notifications can be delivered immediately or can be scheduled for an energy-efficient time. Here using two levels of push priority you can you can decide which notification to be delivered instantaneously or need to be sent later.
  • 10. Discover those Services and Characteristics that You Actually Need A peripheral usually has more than enough services to perform specific use case in an app. It is therefore, recommended to figure out the particular services and characteristics required by your app. This can be done using particular UUIDs to discover services: and discoverCharacteristics:forService: methods of the CBPeripheral class
  • 11. Discover those Services and Characteristics that You Actually Need Discovering particular services OBJECTIVE-C // Look for services matching a specific set of UUIDs [peripheral discoverServices:@[firstServiceUUID, secondServiceUUID]]; SWIFT // Look for services matching a specific set of UUIDs peripheral.discoverServices([firstServiceUUID, secondServiceUUID])
  • 12. Discover those Services and Characteristics that You Actually Need Discovering particular service characteristics OBJECTIVE-C // Look for characterstics matching a specific set of UUIDs for a given service [[peripheral discoverCharacteristics:@[firstCharacteristicUUID, secondCharacteristicUUID] forService:interestingService]]; SWIFT // Look for characterstics matching a specific set of UUIDs for a given service peripheral.discoverCharacteristics([firstCharacteristicUUID, secondCharacteristicUUID], forService: interestingService)
  • 13. Disconnect from the Device When You Don't Need It To avoid your app from meaninglessly using the device’s radio simply disconnect it from a peripheral device if some characteristic is no longer providing notifications or even if the extra data is not required anymore. Cancel every notification subscriptions by passing a value of NO to the setNotifyValue:forCharacteristic: method of the CBPeripheral class. Now disconnect from the device by calling the cancelPeripheralConnection: method of the CBCentralManager class
  • 14. Disconnect from the Device When You Don't Need OBJECTIVE - C // Unsubscribe from a characteristic value [self.peripheral setNotifyValue:NO forCharacteristic:interestingCharacteristic]; // Disconnect from the device [self.myCentralManager cancelPeripheralConnection:peripheral]; SWIFT // Unsubscribe from a characteristic value self.peripheral.notifyValue(false, forCharacteristic: interestingCharacteristic) // Disconnect from the device self.myCentralManager.cancelPeripheralConnection(peripheral)
  • 15. Multiple factors affect the amount of energy required to do the network operations on a device. 1. Cellular network activity requires much more energy than performing an activity over Wi-Fi. 2. Poor or fluctuation in signal conditions may result in slow or problematic transactions, which must be avoided. 3. Low network throughput (bandwidth) means radios need to stay more than usual for performing the transactions. 4. The geographic location and preferred cellular provider can affect the amount of energy consumption because signal conditions and throughput vary very often.
  • 16. Networking Variable Effect on the Energy
  • 17. Guideline for content refresh optimization Try to limit the number of views your app uses. 1. Avoid using opacity especially for the content that changes frequently. 2. Prefer only recommended frameworks while developing games. These frameworks are optimized to provide good performance.