zoukankan      html  css  js  c++  java
  • ios

    1.    //输入框背景色

          bar.searchBarStyle = UISearchBarStyleMinimal;

          [bar positionAdjustmentForSearchBarIcon:UISearchBarIconSearch];

          

          // 改变UISearchBar内部输入框样式

          UIView *searchTextField = nil;

          searchTextField = [[[bar.subviews firstObject] subviews] lastObject];

          // 改变输入框背景色

          searchTextField.subviews[0].backgroundColor = [UIColor purpleColor];

      //    searchTextField.layer.cornerRadius = 5.0;

          

  • 相关阅读:
    Leetcode_02【两数相加】——【难度:中】
    Leetcode_39【组合总和】
    Leetcode_38【报数】
    Leetcode_36【有效的数独】
    Leetcode_35【搜索插入位置】
    51nod1347 旋转字符串
    WebH
    ExcelHelper
    文件二进制与String相互转换
    汇编语言里 eax, ebx, ecx, edx, esi, edi, ebp, esp
  • 原文地址:https://www.cnblogs.com/shenlaiyaoshi/p/7905071.html
Copyright © 2011-2022 走看看