NOTE: VibrationIOS is being deprecated. Use Vibration instead.

The Vibration API is exposed at VibrationIOS.vibrate(). On iOS, calling this function will trigger a one second vibration. The vibration is asynchronous so this method will return immediately.

There will be no effect on devices that do not support Vibration, eg. the iOS simulator.

Vibration patterns are currently unsupported.

Methods

static vibrate()

@deprecated

Examples

'use strict';

var React = require('react');
var ReactNative = require('react-native');
var {
  StyleSheet,
  View,
  Text,
  TouchableHighlight,
  VibrationIOS
} = ReactNative;

exports.framework = 'React';
exports.title = 'VibrationIOS';
exports.description = 'Vibration API for iOS';
exports.examples = [{
  title: 'VibrationIOS.vibrate()',
  render() {
    return (
      <TouchableHighlight
        style={styles.wrapper}
        onPress={() => VibrationIOS.vibrate()}>
        <View style={styles.button}>
          <Text>Vibrate</Text>
        </View>
      </TouchableHighlight>
    );
  },
}];

var styles = StyleSheet.create({
  wrapper: {
    borderRadius: 5,
    marginBottom: 5,
  },
  button: {
    backgroundColor: '#eeeeee',
    padding: 10,
  },
});
Vibration.vibrate()
  • References/JavaScript/React Native/APIs

static vibrate(pattern, repeat)

2025-01-10 15:47:30
VibrationIOS.vibrate()
  • References/JavaScript/React Native/APIs

static vibrate() @deprecated

2025-01-10 15:47:30
IntentAndroid.getInitialURL()
  • References/JavaScript/React Native/APIs

static getInitialURL(callback) If the app launch was triggered by an app

2025-01-10 15:47:30
Animated#flattenOffset()
  • References/JavaScript/React Native/APIs

flattenOffset() Merges the offset value into the base value and resets the offset to zero. The final output

2025-01-10 15:47:30
Animated.modulo()
  • References/JavaScript/React Native/APIs

static modulo(a, modulus) Creates a new Animated value that is the (non-negative)

2025-01-10 15:47:30
PushNotificationIOS.presentLocalNotification()
  • References/JavaScript/React Native/APIs

static presentLocalNotification(details) Schedules the localNotification

2025-01-10 15:47:30
StatusBarIOS#setStyle()
  • References/JavaScript/React Native/APIs

setStyle(style, animated?)

2025-01-10 15:47:30
StyleSheet.create()
  • References/JavaScript/React Native/APIs

static create(obj) Creates a StyleSheet style reference from the given object

2025-01-10 15:47:30
PushNotificationIOS#getAlert()
  • References/JavaScript/React Native/APIs

getAlert() Gets the notification's main message from the aps object

2025-01-10 15:47:30
Animated#getLayout()
  • References/JavaScript/React Native/APIs

getLayout() Converts {x, y} into {left, top} for use in style, e.g.

2025-01-10 15:47:30