User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







objective-c:uikit.framework:uilabel.h:init

init

 
- (id)init;
 

Returns a UILabel.

Return Value - UILabel

ObjC Sourcecode Example

    // ** Init label **
    UILabel *aLabel = [[UILabel alloc]init];
 
    // ** Output **
    NSLog(@"%@", aLabel);

If you look at the output for this example code, you`ll see that the label`s frame values are “0 0 ; 0 0”! This is because no frame was set yet. You need to set the frame of the label or it will not be visible after adding it to the view.
It`s recommend to use ”initWithFrame”.

Output for this example code

2012-12-30 19:30:29.866 UILabelSample[1427:11303] <UILabel: 0x7414fc0; frame = (0 0; 0 0); clipsToBounds = YES; userInteractionEnabled = NO; layer = <CALayer: 0x7415080>>

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
objective-c/uikit.framework/uilabel.h/init.txt · Last modified: 2024/02/16 01:12 (external edit)

Impressum Datenschutz