IOS瘋狂基礎之常見小效果

2021-06-14 00:44:45 字數 389 閱讀 2903

uiview 

//陰影 + 圓角

=[uibezierpath bezierpathwithrect:viewparent.bounds].cgpath;

= [[uicolor graycolor] cgcolor];

= 0.42f;

= cgsizemake(1.0, 2.0f);

= 8.0;

//圓角

uiview * grayview = [detail viewwithtag:99];

grayview.layer.shadowradius = 8.0;

grayview.layer.cornerradius=16.0f;

grayview.layer.maskstobounds=no;

IOS瘋狂基礎之NSDictionary

廢話少說,看下 就知道用法了。nsdictionary dict nsdictionary dictionarywithobjectsandkeys value1 key1 value2 key2 nil 注意nil 結尾 得到key value的個數 int dictsize mydictiona...

IOS瘋狂基礎之UIImage

cgimage和cgimageref這兩個應當是用來重繪圖形的類,它們在應用時是按照影象的畫素矩陣來繪製的,它們可以用來處理bitmap。cgimageref與uiimage的互轉 cgimageref轉換成uiimage cgimageref ioffscreen cgbitmapcontextc...

IOS瘋狂基礎之UILabel

前言 我這個人不怎麼喜歡用 xib 或是 storyboard 拖控制項然後關聯操作,我喜歡用寫 的方式來實現。以下是常用的屬性 uilabel label1 uilabel alloc initwithframe cgrectmake 50.0 20.0 200.0 50.0 宣告時必須指定長寬 ...