Until self.view is itself released, all of those labels do in fact continue to exist. Your code allocates memory for and initializes the object and then passes ownership of the object over to your view. Your release means that when the view is released you won't have retained ownership of them so the system will be free to get rid of them: your release itself doesn't get rid of the objects. (I've added an illustration below in case it's not clear.)
It's not just a memory issue, though, because a UILabel object has all kinds of other overhead: its own dozen properties and methods, the several dozen properties and methods it inherits from UIView, another dozen inherited from UIResponder, and more than another dozen from UIObject. That UILabel can do all kinds of nifty things as a result: have colors and shadows and alpha transparency and manage word wrap and have gesture recognizers attached and be animated and have its own subviews, etc.
For a much lighter solution you can draw the same text using NSString's drawInRect:withFont: method (which it gets from its UIKit Additions). None of that UILabel overhead, though none of its niceties, either. Still, with a little effort it should do exactly what you want.
This is likely overkill, but an illustration:

Your ViewController allocates and initializes the View. There is one copy of the View in memory, and the ViewController retains ownership of the View until you (most likely) release the ViewController in its dealloc method (unless you manually release it before then).
Your ViewController allocates and initializes a Label. There is one copy of the Label in memory, and the ViewController retains ownership of the Label.
By calling the View's addView method you add ownership of the Label to the View (in addition to instructing it to display the Label). There is still one copy of the Label in memory and two objects now own it.
By calling the Label's release method the ViewController gives up ownership of the Label. There is still one copy of the Label in memory and the View still owns it.
You repeat steps 2 - 4 every time through the loop, with the View retaining ownership of the allocated Label every time.
Each time the Application reaches the end of its run loop (which happens over and over while the app is running) if there are any allocated objects that have no owner then the memory used to store them is released. Because your View still owns all of those labels the memory you allocated for them continues to be used.
drawInRectmethod. Adding a comment here to ensure you get notification and might take a look. – Matthew Frederick Jul 10 '11 at 19:00