亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        ios中點(diǎn)擊按鈕修改文本的尺寸

        字號:


            創(chuàng)建uilabel
            self.lbl=[[uilabel alloc] initwithframe:cgrectmake(135, 290,200,35)];
            self.lbl.backgroundcolor=[uicolor clearcolor];
            nsstring *str=[nsstring stringwithformat:@%.f,[self.slider value]];
            [self.lbl setfont:[uifont fontwithname:@arial-boldmt size:16]];
            self.lbl.text=str;
            [self.view addsubview:self.lbl];
            點(diǎn)擊uibutton時修改uilabel文本尺寸
            -(ibaction)buttonpressed:(id)sender
            {
            [self.lbl setfont:[uifont fontwithname:@arial-boldmt size:25]];
            }