Sorry this is such a basic problem, but I can't seem to get the view in my game to move. I created the view and defined it, but when I move it in the game loop, nothing happens.
sf::RenderWindow window(sf::VideoMode(600, 600), "SFML");
sf::View view;
view.setSize(sf::Vector2f(600, 600));
view.setCenter(sf::Vector2f(300, 300));
window.setView(view);
...
view.move(100, 0);