黑心医院开发总结

莆田系医院作的恶已经人尽皆知,为了让家人远离附近的莆田系医院,我特意开发了一款APP供大家使用,现已上架AppStore,地址在这里,而因为实现简单又不涉及许多隐私,所以把这个app开源了,地址在这

这是我首个个人作品,也是首个全用swift完成的作品。当然使用swift进行开发早在14年就开始了,不过因为版本更新太快,不得不放弃了后续维护,改用OC继续实现。如今swift的稳定性已经相当可观,第三方库的支持也比较到位了,是时候全面转向swift的怀抱了。今后的开源项目也将尽量都用swift来实现。

黑心医院的实现非常简单:

  1. 从凤凰网获取名单,然后到高德地图上获取地理位置数据,并保存下来。
  2. 使用SwiftyJSON进行解析,使用Realm进行存储
func loadData() -> Void {
      let realm = try! Realm()
      
      hospitals = realm.objects(Hospital)
      print("count = \(hospitals.count)")
      if hospitals.count == 0 {
          let path = NSBundle.mainBundle().pathForResource("hospital", ofType: "geojson")
          let data = NSFileManager.defaultManager().contentsAtPath(path!)
          
          let dic = try!  NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.AllowFragments) as? NSDictionary
          
          let json = JSON(dic!)
          
          print(json)
          
          let array = json["features"]
          for hos in array.array! {
              let name = hos["properties"]["name"].string
              let lng = hos["geometry"]["coordinates"][0].double
              let lat = hos["geometry"]["coordinates"][1].double
              
              let hospital: Hospital = Hospital()
              hospital.name = name!
              hospital.lat = lat!
              hospital.lng = lng!
              
              try! realm.write {
                  realm.add(hospital)
              }
          }
          
          hospitals = realm.objects(Hospital)
      }
      
      print("count = \(hospitals.count)")
  }

这里我曾经想把做好的realm数据库直接放进bundle并设为只读,然后直接读取bundle中的数据库,但是无奈并没有这个权限,只好放弃了。

  1. 使用MapKit进行地图绘制
override func viewDidLoad() {
      super.viewDidLoad()

      // Do any additional setup after loading the view.
      
      locationManager.delegate = self
      locationManager.desiredAccuracy = kCLLocationAccuracyBest
      locationManager.requestWhenInUseAuthorization()
      locationManager.startUpdatingLocation()
      
      mapView.showsUserLocation = true
      for hospital in hospitals {
          let ann = MKPointAnnotation()
          ann.title = hospital.name
          let coordinate = CLLocation(latitude: hospital.lat, longitude: hospital.lng).coordinate
          ann.coordinate = coordinate
          mapView.addAnnotation(ann)
      }
  }

//MARK: mapview delegate
  func mapView(mapView: MKMapView, viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
      
      if annotation is MKUserLocation {
          //return nil so map view draws "blue dot" for standard user location
          return nil
      }
      
      let reuseId = "pin"
      
      var pinView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId) as? MKPinAnnotationView
      if pinView == nil {
          pinView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
          pinView!.canShowCallout = true
          pinView!.animatesDrop = true
//            pinView!.pinTintColor = UIColor.purpleColor()
          pinView!.rightCalloutAccessoryView = UIButton(type: .DetailDisclosure)
          
      }
      else {
          pinView!.annotation = annotation
      }
      return pinView
  }
  
  var locationUpdated = false
  
  func mapView(mapView: MKMapView, didUpdateUserLocation userLocation: MKUserLocation) {
      if locationUpdated == false {
          
          //创建一个MKCoordinateSpan对象,设置地图的范围(越小越精确)
          let latDelta = 0.5
          let longDelta = 0.5
          let currentLocationSpan:MKCoordinateSpan = MKCoordinateSpanMake(latDelta, longDelta)
          
          //定义地图区域和中心坐标(
          //使用自定义位置
          let center:CLLocation = userLocation.location!
          let currentRegion:MKCoordinateRegion = MKCoordinateRegion(center: center.coordinate,
                                                                    span: currentLocationSpan)
          
          //设置显示区域
          mapView.setRegion(currentRegion, animated: true)
          locationUpdated = true
      }
  }
  
  1. 使用UISearchController进行检索
    本来检索想用UISearchDIsplayController做的,由于只支持最新版本,才发现这玩意已经被弃用了。从后面的版本开始需要使用UISearchController了。
override func viewDidLoad() {
      super.viewDidLoad()

      // Uncomment the following line to preserve selection between presentations
      // self.clearsSelectionOnViewWillAppear = false

      // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
      // self.navigationItem.rightBarButtonItem = self.editButtonItem()
      searchController = UISearchController(searchResultsController: nil)
      searchController.delegate = self
      searchController.searchResultsUpdater = self
      searchController.dimsBackgroundDuringPresentation = false
      searchController.obscuresBackgroundDuringPresentation = false
      searchController.hidesNavigationBarDuringPresentation = false
      self.tableView.tableHeaderView = searchController.searchBar
  }

func updateSearchResultsForSearchController(searchController: UISearchController) {
      let searchText = searchController.searchBar.text
      
      var arr = Array<Hospital>()
      for hospital in self.hospitals {
          if (hospital.name as NSString).containsString(searchText!) {
              arr.append(hospital)
          }
      }
      searchResults = arr
      self.tableView.reloadData()
  }
  1. 使用UIActivityController 来分享
func mapView(mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {
      let image = UIImage(named: "60")
      let url = NSURL(string: "http://finance.ifeng.com/a/20160504/14362042_0.shtml")
      let string = (view.annotation?.title!)!+"属于莆田系医院,小伙伴们千万不要去!"
      let activityController = UIActivityViewController(activityItems: [image! ,url!,string], applicationActivities: nil)
      self.presentViewController(activityController, animated: true, completion: nil)
  }

原本想使用微信分享的,但一来微信分享需要引入微信库,二来还要各种依赖,集成好了之后又被我删掉了。反正自带的分享也可以支持微信的,而且代码相当简单。

我也知道github上有些开源项目正在收集莆田系医院的数据,不过一来没提供获取数据与提交数据的接口,仍然是本地数据的模式,二来没有地理位置的信息,我觉得相比什么电话网址这些数据,地理位置更有用一些。所以目前我还是会维持使用本地数据的方式,直到有可用的接口为止。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容