WKInterfaceLabel使用 WKInterfaceLabel 相似iOS 组件中的UILabel, 可通过使用 setText 的方式来设置详细的值。这里就不做多阐述。 WKInterfaceImage 使用 WKInterfaceImage 相似于 UIImageView, 使用时,可用 ...
分类:
其他好文 时间:
2018-03-25 22:16:04
阅读次数:
199
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UIImageView *userHeaderImageView = [[UIImageV ...
分类:
其他好文 时间:
2018-03-05 15:36:20
阅读次数:
177
类似于微信中的发送位置,拖拽重新定位,以及反编码,列表附近的位置。 思路就是将一个UIImageView固定在地图中间,每次更新位置,给UIImageView添加动画即可。 代码如下: ...
分类:
其他好文 时间:
2018-01-02 15:17:45
阅读次数:
236
1、圆角使用UIImageView装载一个圆角图片来处理。 @implementation UIImage (RoundedCorner) - (UIImage *)imageWithRoundedCornersAndSize:(CGSize)sizeToFit andCornerRadius:(C ...
分类:
其他好文 时间:
2017-12-14 13:19:04
阅读次数:
195
var bgImage = UIImageView() var backButton = UIButton() var titleLabel = UILabel() let screen_h = UIScreen.main.bounds.height let screen_w = UIScreen. ...
分类:
编程语言 时间:
2017-11-07 22:11:00
阅读次数:
301
1.生成一个类,继承自UIView(ScalePictures),在这个类的.h中声明一个类方法: +(void)scanBigImageView:(UIImageView *)currentImageview alpha:(CGFloat)alpha; 2.在声名类的.m中开始写.h声明类方法的实 ...
分类:
其他好文 时间:
2017-10-31 14:59:55
阅读次数:
155
在iOS的图片加载框架中,SDWebImage可谓是占据大半壁江山。它支持从网络中下载且缓存图片,并设置图片到对应的UIImageView控件或者UIButton控件。在项目中使用SDWebImage来管理图片加载相关操作可以极大地提高开发效率,让我们更加专注于业务逻辑实现。 SDWebImage ...
分类:
移动开发 时间:
2017-10-25 11:13:30
阅读次数:
215
import UIKitclass ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let image = UIImage.init(named: "111.png"); let ...
分类:
编程语言 时间:
2017-10-19 12:53:23
阅读次数:
222
#import "ViewController.h" @interface ViewController () // 用于显示生成二维码图片的 imageView @property (weak, nonatomic) IBOutlet UIImageView *imageView; @end @i ...
分类:
移动开发 时间:
2017-10-06 23:50:22
阅读次数:
262
三十四、主线程操作UI(对UI进行更新只能在主线程进行) 解释:所谓的在主线程更新UI、操作UI,大致的意思就是设置UILabel的text或者设置tabbar的badgeValue,设置UIImageView的image等等。 回到主线程方式1: performSelectorOnMainThre ...
分类:
移动开发 时间:
2017-09-14 16:48:10
阅读次数:
255