Apple Has a New Trick to Make the iPhone’s Battery Last Even Longer
Credit: Camilo Concha / Shutterstock
Fortunately, Apple knows this, and rumor has it that it’s currently working on making more room for a bigger battery in future iPhones and other Apple devices too.
A recent report from DigiTimes shows that Apple’s making plans to make the internal components on the iPhone, iPad, and MacBook smaller in order to increase the size of the batteries they use.
Apple plans on reducing the size of its parts by increasing the adoption of integrated passive devices, also known as IPD.
These chips and components will bring higher performance while also being smaller and slimmer. Meaning, all Apple devices will have more space inside.
Apple’s been continuously working to make its devices’ components as small as possible – but, unfortunately, the report doesn’t specify when Apple will start using these chips.
Recently, Apple released the 2021 iMac, which features the thinnest design on a Mac desktop while also being one of the most powerful. And even though it’s highly likely that the upcoming iPhone 13 won’t feature any of these new IPDs, there are many rumors that say this year’s iPhone will have a thicker body that leaves enough room for a larger battery.
let adhesion = document.querySelector(‘.adhesionUnitContainer’);
var height = document.documentElement.scrollHeight – 400;
console.log(height);
window.addEventListener(‘scroll’, () => {
if(window.scrollY === 0) adhesion.style.opacity = 0;
if(window.scrollY >= height) {
adhesion.style.opacity = 0;
} else {
adhesion.style.opacity = 1;
}
})