OSX has proper SSE intrinsic support.
What you meant probably is that iOS doesn't support SSE. iOS works on ARM which has NEON intrinsics.
What do you mean reinterpret and integer vector to float vector? Just a cast?
| float fvec[4];
int* ivec = (int*)fvec;
|