As has already been said, no you do not need to buy things made specifically for the Pi -- and note that occasionally things are sold "for the pi" which are not easily compatible, so even if this is claimed, you need to know a few things you can check to make sure.
Most of the information here applies to specifically to sensors and gadgets; the issue of voltage (discussed first) applies to just about anything.
Logic Level
The GPIOs on the Pi use 3.3V logic. If you are connecting a sensor, it must also use 3.3V logic. That and 5V are common, but do not connect a 5V device directly to a Pi. If there is such a thing you really want to use, you need a level shifter in the middle.
There is a difference between input (power) and logic voltage. Devices that require 5V power but operate with 3.3V logic are common (the Raspberry Pi being an example of such). Not all of the 40 pins on the Pi breakout are actually GPIO ("general purpose input/output") pins; some of them are power (either 3.3V or 5V) or ground. The GPIOs are low current, perhaps 15-20 mA each and not more than 50-100 mA in total. However, the 3.3V and 5V power pins can provide much more than this, in the range of 1 amp total.
Some devices use dual logic, e.g., either 3.3V or 5V. Sometimes this is dependant on the input voltage, sometimes it is switchable.
Digital vs. Analog
The Pi GPIOs are digital, meaning they read either a high or low value (there is a third state that applies to an input not connected to anything called "floating", aka. high impedance or high-Z, but it will read arbitrarily and unpredictably as either high or low). This is important because many sensors are analog, meaning they are controlled by, or output, a linear voltage value within a range (e.g., between 0 and 3.3V). Generally there is a number of significant bits applied to the range; you may understand this concept from programming. For example, an 8-bit precision integral (as in, whole numbers) value ranges from 0 to 255, and a 10-bit precision value ranges from 0 to 1023.
Digital logic is equivalent to a 1 bit value, which is either 0 or 1. Obviously this is not much good for interfacing with analog devices directly. To do so, you need an ADC (analog to digital converter) and/or a DAC (digital to analog converter). These most often connect to one of the serial buses.
Serial Buses
The Pi is equipped with a number of different serial buses implemented in hardware and broken out on GPIO pins. Many sensors also use such buses; they can be used for complex, relatively high speed data exchange (although not nearly as fast as the USB, which is also a style of serial bus). These are:
UART: (Universal Asynchronous Receiver Transmitter) This is a minimal protocol that is easy to program with and highly adaptable to a wide range of purposes. The Pi's UART is full duplex, but does not have hardware flow control. It uses two pins (RX = receiver, TX = transmitter). Although it is not impossible to daisy chain or connect more than two UART devices through a simple hub, the relationships are genrally one to one, i.e., you can only connect one thing to the UART at a time.
Sensors generally don't use UART, probably because it is very unstructured, meaning it would require complex additional circuitry to work (which is more or less what the next two bus types are). However, microcontrollers commonly do.
I2C: (Inter-Intergrated Circuit) I2C is a more highly structured and standardized protocol than UART used for exchanging short, simple messages with simple devices such as many sensors. It is master/slave based, and uses 7-bit addressing to allow for multiple slaves. The Pi is generally the master, and you may connect quite a few slaves to the same two I2C (SDA = data, SCL = clock) pins simultaneously providing they all use different addresses. Some devices can have an address set, so that more than one can be used simultaneously, and some are hardwired to use only one address.
SPI: (Serial Peripheral Interface) SPI essentially uses three pins, in, out, and clock, meaning it has an advantage in transfer speed to I2C (where the same data line must alternate sending and receiving), plus two more "chip select" pins. The latter are used to toggle connected devices, meaning in a basic configuration there can only be two things connected to the SPI bus at a time.
There is a bit more to the GPIOs hardware wise; for example, there are several PWM (Pulse Width Modulation) clocks available. However the serial buses are the primary means of communication with sensors.