Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 01-25-2012, 10:18 AM   #1 (permalink)
Registered Member
 
Join Date: Jul 2010
Posts: 25
veterinarian2008 is on a distinguished road
Default Control Device Brightness with UISlider. (NEED HELP!)

Hello guys!

I really need help on getting a UISlider working to set up my device brightness within the app. I know this is now allowed on iOS 5. My main problem is the UISlider thing. I am know to this. Okay so I tried this:

Code:
-(IBAction)brightnessControlActions{
    
    
   
    float fBrightness = [UIScreen mainScreen].brightness;
    [[UIScreen mainScreen]setBrightness:fBrightness];

    
}
I added a value change method on the IB.

and nothing happened.

Then I try this to see if it worked, but is not working correctly.
Code:
if (slider.value > 1.0) {
        
        [[UIScreen mainScreen]setBrightness:1.0];
        
    }
    
    else if(slider.value > 0.99) {
        
        [[UIScreen mainScreen]setBrightness:0.99];
        
    }
    
    if (slider.value > 0.98) {
        
        [[UIScreen mainScreen]setBrightness:0.98];
        
    }
    
    else if(slider.value > 0.97) {
        
        [[UIScreen mainScreen]setBrightness:0.97];
        
    }
    
    if (slider.value > 0.96) {
        
        [[UIScreen mainScreen]setBrightness:0.96];
        
    }
    
    else if(slider.value > 0.95) {
        
        [[UIScreen mainScreen]setBrightness:0.95];
        
    }

My problem is how do I add this to a UISlider so that it will control it and this is the only code I have to get and set the brightness:

Code:
float fBrightness = [UIScreen mainScreen].brightness;
    [[UIScreen mainScreen]setBrightness:fBrightness];
Please help... I read the docs and I just don't understand much.

Any help will be greatly appreciated :)
veterinarian2008 is offline   Reply With Quote
Old 01-25-2012, 10:31 AM   #2 (permalink)
Reading the Documentation
 
baja_yu's Avatar
 
Join Date: Sep 2010
Location: 45.255019,19.844908
Posts: 5,414
baja_yu has a spectacular aura about
Default

Code:
float fBrightness = [UIScreen mainScreen].brightness;
    [[UIScreen mainScreen]setBrightness:fBrightness];
Why would that do anything?! You're reading the screen brightness then setting the same value for the brightness, nothing would change. Set your sliders min and max value to 0.0 and 1.0 then set the sliders value for the brightness.
baja_yu is offline   Reply With Quote
Old 01-25-2012, 10:31 AM   #3 (permalink)
Registered Member
 
apatsufas's Avatar
 
Join Date: Jan 2011
Location: Thessaloniki, Greece
Posts: 121
apatsufas is on a distinguished road
Default

Your IBAction should be something like this

Code:
-(IBAction)brightnessControlActions:(id)sender {
    
    UISlider *slider = (UISlider *)sender;
    float fBrightness = slider.value;
    [[UIScreen mainScreen]setBrightness:fBrightness];

    
}
Connect it to your UISlider for the ValueChanged event
__________________
SQLed - Your Database Manager on the go

iAZConverter - Converts everything from A to Z
apatsufas is offline   Reply With Quote
Old 01-25-2012, 10:37 AM   #4 (permalink)
Registered Member
 
Join Date: Jul 2010
Posts: 25
veterinarian2008 is on a distinguished road
Default

Quote:
Originally Posted by apatsufas View Post
Your IBAction should be something like this

Code:
-(IBAction)brightnessControlActions:(id)sender {
    
    UISlider *slider = (UISlider *)sender;
    float fBrightness = slider.value;
    [[UIScreen mainScreen]setBrightness:fBrightness];

    
}
Connect it to your UISlider for the ValueChanged event


DUDE!!! YOU ARE MY HERO!!!!! I LOVE (NO GAY)

Thank you so much. That was so simple. Wish everyone could help like you.

Thanks!
veterinarian2008 is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 392
11 members and 381 guests
Atatator, condor304, FrankWeller, glenn_sayers, iphonedevshani, MAMN84, mraalex, PowerGoofy, QuantumDoja, tim0504, VinceYuan
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,674
Threads: 94,123
Posts: 402,908
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Atatator
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 05:52 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0