The code here is actually pretty simple, you just want to detect whether it has exceeded the boundaries, and if it has, the correct it. Assuming player.center is something like an NSPoint, the code could be something like:
if(player.center.x <= 0){
player.center.x = 0;
}else if(player.center.x >= 200){
player.center.x = 200;
}
if(player.center.y <= 0){
player.center.y = 0;
}else if(player.center.y >= 300){
player.center.y = 300;
}
If you want the edges to not pass the sides, then you could just do something like:
if(player.center.x - player.xSize / 2 <= 0){
player.center.x = 0 + player.xSize / 2;
}
And the same for the other x bound and the y bounds.