I'm no IOS developer, but the edge modes you listed (repeat, mirror and clamp) are all the graphics hardware I know about supports, so I'd guess the iPhone/iPad GPUs will be similar.
If you can, make the texture 1 pixel larger at each border (so eg. use a 126x126 bitmap and paste it into the middle of a transparent 128x128 texture) and use clamp as the edge mode. This will not result in a sharp edge, however, since bilinear interpolation will still take place.
Otherwise, you'll have to do the math yourself, meaning that if your viewing rectangle reaches the border of the texture, you'll have to adjust the coordinates of the rendered quad instead of only its texture coordinates, eg.
upperLeftQuad.U = viewRectangle.X / textureWidth;
if(upperLeftQuad.U < 0) {
upperLeftQuad.X += -(upperLeftQuad.U * textureWidth);
upperLeftQuad.U = 0;
}
upperRightQuad.U = (viewRectangle.X + viewRectangle.Width) / textureWidth
if(upperLeftQuad.U > 1) {
upperLeftQuad.X -= (upperLeftQuad.U * textureWidth);
upperLeftQuad.U = 1;
}