微信摇一摇插件ios_iOS实现微信摇一摇功能
一、描述
需要做一個界面,仿照微信搖一搖,獲取接口進行簽到功能。
首先明確以下幾點:
1、需要震動。
2、需要聲音。(準備好mp3音效)
二、這邊直接貼代碼
/ Created by 石雄偉 on 16/7/29.
// Copyright ? 2016年 石雄偉. All rights reserved.
//
#import "SignBoardViewController.h"
#import
#import
#import
@interface SignBoardViewController ()
{
}
@property (nonatomic,strong) AVAudioPlayer * audioPlayer;
@end
@implementation SignBoardViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
//設置導航
[self makeNav];
}
#pragma mark 定制Nav
- (void)makeNav
{
[self.navigationItem setTitle:@"每日簽到"];//改寫title
//修改導航按鈕,并且修改響應方法
self.leftButton.frame = CGRectMake(0, 0, 13, 20);
[self.leftButton setBackgroundImage:[UIImage imageNamed:@"NavBack"] forState:UIControlStateNormal];
self.leftButton.layer.cornerRadius = 0;
self.leftButton.layer.masksToBounds = NO;
self.leftButton.layer.borderColor = [UIColor clearColor].CGColor;
//添加點擊方法
[self.leftButton addTarget:self action:@selector(navLeftClick) forControlEvents:UIControlEventTouchUpInside];
//隱藏 右邊按鈕
self.rightButton.hidden= YES;
}
#pragma mark nav左邊導航按鈕方法重寫,返回按鈕
- (void)navLeftClick
{
[self dismissViewControllerAnimated:YES completion:^{
nil;
}];
}
#pragma mark -
#pragma mark 點擊
- (void)touchesBegan:(nonnull NSSet *)touches withEvent:(nullable UIEvent *)event
{
NSLog(@"點擊,觸摸方法等");
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}
#pragma mark -
#pragma mark 搖動開始
- (void)motionBegan:(UIEventSubtype)motion withEvent:(nullable UIEvent *)event
{
NSLog(@"begin motion");
}
#pragma mark -
#pragma mark 搖動結束
- (void)motionEnded:(UIEventSubtype)motion withEvent:(nullable UIEvent *)event
{
NSLog(@"end motion");
if (motion ==UIEventSubtypeMotionShake )
{
//播放音效
SystemSoundID soundID; // shake_sound_male.mp3
NSString *path = [[NSBundle mainBundle ] pathForResource:@"shake_sound_male" ofType:@"mp3"];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:path], &soundID);
AudioServicesPlaySystemSound (soundID);
//設置震動
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}
}
#pragma mark -
#pragma mark 搖動取消
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持找一找教程網。
超強干貨來襲 云風專訪:近40年碼齡,通宵達旦的技術人生總結
以上是生活随笔為你收集整理的微信摇一摇插件ios_iOS实现微信摇一摇功能的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 怎么使图表居中显示_【Excel技巧】制
- 下一篇: 匹配正则_Day233:正则表达式匹配方