2016-08-31 11 views
0

나는 미친 듯이 주변을 둘러 보았습니다. 나는 볼륨 버튼 길고 짧은 언론 (예 : snapchat, 짧은 보도 사진, 긴 언론 기록 비디오)과 같은 사용자 지정 작업을 수행해야하지만 실패했습니다.길고 짧은 볼륨 버튼 감지 - iOS

나는 볼륨 버튼 누름 이벤트를 감지 할 수 있도록 https://github.com/jpsim/JPSVolumeButtonHandler 을 사용했습니다. 그러나 아주 열심히 노력한 후에 나는 그 긴 언론과 짧은 언론을 발견하지 못했습니다.

//Volume button handler 

self.volumeButtonHandler = [JPSVolumeButtonHandler volumeButtonHandlerWithUpBlock:^{ 
     // Volume Up Button Pressed 
     [self onVolumeUp]; 
    } downBlock:^{ 
     // Volume Down Button Pressed 
    }]; 

-(void)onVolumeUp { 
    if(self.volButtonTimer) { 
     secondsElapsed = 1; //To detect long press 
     [self.volButtonTimer invalidate]; 
    } 
    self.volButtonTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 
                target:self 
               selector:@selector(onTimerFire) 
               userInfo:nil 
               repeats:NO]; 

} 

-(void)onTimerFire { 
    NSLog(@"Long Press %d",secondsElapsed); 
    if (secondsElapsed > 1) 
    { 
     //Do Something 
    } 
    else secondsElapsed = 0; 

} 

나는이에 대한 도움이 필요하세요 내 코드 Detect iPhone Volume Button Hold? (iOS 8)

를 참조하십시오. Google 전체에서 검색했지만 실패했습니다. snapchat이 그것을하고 있다면, 그것의 행할 수 있음을 의미합니다.

고맙습니다.

답변

0

저는 지금 당장 같은 문제에 직면하고 있습니다. 내가 알아 낸 것은 애플이 일부 기본적인 하드웨어 기능을 바꾸면 앱을 거부한다는 것이다. 이 링크를 참조하십시오 : https://developer.apple.com/app-store/review/guidelines/. 반면 Snapchat과 같이 App Store에는 다른 용도로 볼륨 버튼을 사용하거나 길게 누르는 카메라 앱이 많기 때문에 오해의 소지가 있습니다.

어쨌든, 나는 길게 누르면를 처리하기 위해 관리,이 스레드를 참조하십시오 https://github.com/jpsim/JPSVolumeButtonHandler/issues/27#issuecomment-253979943

+0

아를, 그 Snapchat에서 - 규칙 차단기! –

+0

솔루션을 찾았습니다. 편집 된 답변을 참조하십시오. – Timo

+0

예, 우리는 또한 같은 기능을 구현하지만, dispatch_after() 메서드. Snapchat을 App과 같이 만들기 때문에 내 개인 징징이 나옵니다. Appstore에서 Snapchat 금지를위한 음성 수집이 필요합니다. –